File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 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:
100100: int
101101 If max_rows is exceeded, switch to truncate view. Depending on
102102 `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.
104107
105108 In case python/IPython is running in a terminal and `large_repr`
106109 equals 'truncate' this can be set to 0 and pandas will auto-detect
@@ -121,7 +124,11 @@ def use_numba_cb(key: str) -> None:
121124: int
122125 If max_cols is exceeded, switch to truncate view. Depending on
123126 `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.
125132
126133 In case python/IPython is running in a terminal and `large_repr`
127134 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