datadave / GADS9-NYC-Spring2014-Students

Student repo for Spring 2014 Data Science Course at GA NYC
4 stars 22 forks source link

How to increase display width of DataFrames in Notebook #101

Closed datadave closed 10 years ago

datadave commented 10 years ago

Put this at the top of your notebook:

pd.set_option('display.width', 500)
pd.set_option('display.max_columns', 30)

_Adjust width and maxcolumns as desired