copipe Python | pandasのDataFrameを省略せずに表示する。

概要

pd.set_option('display.max_rows', None)を指定すると、pandasのDataFrameを省略せずに表示することができる。

コード

import pandas as pd
pd.set_option('display.max_rows', None)
df = pd.DataFrame(range(300,100,-1), columns=["data"])
print(df)

結果

     data
0     300
1     299
2     298
3     297
4     296
5     295
6     294
7     293
8     292
9     291
10    290
11    289
12    288
13    287
続く