Skip to content

Commit

Permalink
Merge pull request #45 from AVHopp/fix/max_colwidth_in_dataframes
Browse files Browse the repository at this point in the history
Reduce max_colwidth in pretty_print_df
  • Loading branch information
AVHopp authored Nov 22, 2024
2 parents b402c74 + 55940d1 commit 8bcdab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion baybe/utils/dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ def pretty_print_df(
df: pd.DataFrame,
max_rows: int = 6,
max_columns: int = 4,
max_colwidth: int = 16,
max_colwidth: int = 14,
precision: int = 3,
) -> str:
"""Convert a dataframe into a pretty/readable format.
Expand Down

0 comments on commit 8bcdab9

Please sign in to comment.