Python Pandas Unable To Display Summary Of Large Dataframe
I recently upgraded to pandas version 0.13 and am experiencing this problem where no matter how big my dataframe is ( the biggest one has 25 columns and 158430 rows), pandas prints
Solution 1:
Here's the change in the what's new for .13.
The old way was to print the result of df.info()
. You can change the behavior to always do that with set_option('display.large_repr', 'info')
. You can add that to your IPython startup file if you're using IPython.
Post a Comment for "Python Pandas Unable To Display Summary Of Large Dataframe"