pandas option display.max_rows 不工作
pd.set_option(‘display.max_rows’, 500)
df
Does not work in Jupyter!
Instead use:
pd.set_option(‘display.max_rows’, 500)
df.head(500)
原文 https://stackoverflow.com/questions/16424493/pandas-setting-no-of-max-rows