Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #1362 - Truncation of BitVector values in Series display #1524

Merged
merged 2 commits into from
Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion arkouda/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# This is necessary for displaying DataFrames with BitVector columns,
# because pandas _html_repr automatically truncates the number of displayed bits
pd.set_option("display.max_colwidth", 64)
pd.set_option("display.max_colwidth", 65)

__all__ = [
"DataFrame",
Expand Down
3 changes: 3 additions & 0 deletions arkouda/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
from arkouda.strings import Strings
from arkouda.util import convert_if_categorical, get_callback, register

# pd.set_option("display.max_colwidth", 65) is being called in DataFrame.py. This will resolve BitVector
# truncation issues. If issues arise, that's where to look for it.

__all__ = [
"Series",
]
Expand Down