loo00r
loo00r

Reputation: 13

How i can look full pandas.dataframe columns in pycharm intstead "..."?

I just need to know how I can see all my frame columns in output:

frame

Upvotes: 0

Views: 111

Answers (1)

M.S.Z
M.S.Z

Reputation: 62

You can use the option_context, with one or more options:

Try this just right after specifying dataframe:

with pd.option_context('display.max_columns', None): 
    print(df)

Upvotes: 2

Related Questions