pd.set_option('display.max_rows', ..) 即使在

pd.set_option('display.max_rows', ..) is not working even after

pd.set_option('display.max_rows', ..) 不工作。 我有一个超过 500k 行的大型 df。当我为 df 执行以下操作(如下面的 link 中所示)时,仅显示 10 行。我需要显示 100 行。我该怎么办?

image here

您必须将 display.min_rows 设置为 100

然后使用head(100)