File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,10 @@ def use_numba_cb(key: str) -> None:
100
100
: int
101
101
If max_rows is exceeded, switch to truncate view. Depending on
102
102
`large_repr`, objects are either centrally truncated or printed as
103
- a summary view. 'None' value means unlimited.
103
+ a summary view.
104
+
105
+ 'None' value means unlimited. Beware that printing a large number of rows
106
+ could cause your rendering environment (the browser, etc.) to crash.
104
107
105
108
In case python/IPython is running in a terminal and `large_repr`
106
109
equals 'truncate' this can be set to 0 and pandas will auto-detect
@@ -121,7 +124,11 @@ def use_numba_cb(key: str) -> None:
121
124
: int
122
125
If max_cols is exceeded, switch to truncate view. Depending on
123
126
`large_repr`, objects are either centrally truncated or printed as
124
- a summary view. 'None' value means unlimited.
127
+ a summary view.
128
+
129
+ 'None' value means unlimited. Beware that printing a large number of
130
+ columns could cause your rendering environment (the browser, etc.) to
131
+ crash.
125
132
126
133
In case python/IPython is running in a terminal and `large_repr`
127
134
equals 'truncate' this can be set to 0 or None and pandas will auto-detect
You can’t perform that action at this time.
0 commit comments