We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16666af commit 380b770Copy full SHA for 380b770
src/nested_pandas/nestedframe/core.py
@@ -160,7 +160,7 @@ def map_true_index(index):
160
# Recover some truncation formatting, limited to head truncation
161
if pd.get_option("display.max_rows") is None:
162
return repr.to_html(max_rows=0)
163
- elif repr.data.shape[0] > pd.get_option("display.max_rows"):
+ elif df_shape[0] > pd.get_option("display.max_rows"):
164
html_repr = repr.to_html(max_rows=pd.get_option("display.min_rows"))
165
else:
166
# when under the max_rows threshold, display all rows (behavior of 0 here)
0 commit comments