回答編集履歴
1
追記
answer
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
get_optionではなくset_optionを試してください。
|
2
|
+
|
1
3
|
```python
|
2
4
|
pd.set_option('display.max_rows', None)
|
3
5
|
```
|
4
|
-
で最大表示行数を無制限に設定でき
|
6
|
+
で最大表示行数を無制限に設定できるはずです。
|
5
7
|
|
6
8
|
参考:
|
7
9
|
[pandas.set_option — pandas 1.2.4 documentation](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.set_option.html)
|