Open Zybulon opened 4 months ago
take
Just did a debugging:
By default display.max_rows
in pandas is set to 60.
But if you have more than 60 rows, its failing as mentioned in your above case.
To avoid it, you can do this - For example, if you want 100 rows max, then:
pd.set_option("display.max_rows", 100)
Then it will work, in case of any other value, replace 100 with that value.
take
Pandas version checks
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest version of pandas.
[ ] I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
Hello,
I have a dataFrame of size (61,1) with 2 attributes (one is an array) and I can't print the first Serie of the DataFrame. I have the following Error :
However I can print the DataFrame, it does not raise the ValueError. If the DataFrame hasn't got the array attribute, I do not have ValueError. If the DataFrame has only 60 rows, I do not have ValueError.
Expected Behavior
I should not have this ValueError.
Installed Versions