當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pandas.Series.head用法及代碼示例


用法:

Series.head(n=5)

返回前 n 行。

此函數根據位置返回對象的前 n 行。它對於快速測試您的對象中是否包含正確類型的數據很有用。

對於 n 的負值,此函數返回除最後 n 行之外的所有行,相當於 df[:-n]

參數

n整數,默認 5

要選擇的行數。

返回

與調用者相同的類型

調用者對象的前 n 行。

例子

>>> df = pd.DataFrame({'animal':['alligator', 'bee', 'falcon', 'lion',
...                    'monkey', 'parrot', 'shark', 'whale', 'zebra']})
>>> df
      animal
0  alligator
1        bee
2     falcon
3       lion
4     monkey
5     parrot
6      shark
7      whale
8      zebra

查看前 5 行

>>> df.head()
      animal
0  alligator
1        bee
2     falcon
3       lion
4     monkey

查看前 n 行(在本例中為三行)

>>> df.head(3)
      animal
0  alligator
1        bee
2     falcon

對於n 的負值

>>> df.head(-3)
      animal
0  alligator
1        bee
2     falcon
3       lion
4     monkey
5     parrot

相關用法


注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.head。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。