我在这里很困惑。 以下是查看数据集形状的命令:
In[] df_faa_dataset.shape
Out[] (83, 42)
现在我想查看前5行并输入命令:
In[] df_faa_dataset.head()
Out[] (displayed output with 5 rows × 42 columns)
默认情况下如何.head()
方法在括号中没有提及5行?
答案 0 :(得分:1)
从文档中复制
DataFrame.head(n=5) Returns first n rows
这是我们在python中建立默认参数值的方法。对于head
方法,n=5
表示默认值为5,因此,如果您自己未传递参数值,则使用5。