??? .head()显示5行而不提及它

时间:2016-10-18 04:52:01

标签: python pandas dataframe

我在这里很困惑。 以下是查看数据集形状的命令:

   In[] df_faa_dataset.shape
   Out[] (83, 42)

现在我想查看前5行并输入命令:

In[] df_faa_dataset.head()
Out[] (displayed output with 5 rows × 42 columns)

默认情况下如何.head()方法在括号中没有提及5行?

1 个答案:

答案 0 :(得分:1)

Official Documentation

从文档中复制

DataFrame.head(n=5)
Returns first n rows

这是我们在python中建立默认参数值的方法。对于head方法,n=5表示默认值为5,因此,如果您自己未传递参数值,则使用5。