Python Forum
python shell elabroting output - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: python shell elabroting output (/thread-16023.html)



python shell elabroting output - kapilan15 - Feb-11-2019

I ran a simple correlation matrix with 8 columns and rows. The output produced in python shell does not show the full output (image attached). How can I elaborate it to see the full matrix?

Thanks


RE: python shell elabroting output - Larz60+ - Feb-11-2019

Hard to say without seeing code.


RE: python shell elabroting output - snippsat - Feb-11-2019

You should mention that you use pandas.
Will force it to display any number of columns.
import pandas as pd
pd.set_option('display.max_columns', None)