Python Forum

Full Version: python shell elabroting output
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
Hard to say without seeing code.
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)