用法:
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
相關用法
- Python pandas.Series.add_prefix用法及代碼示例
- Python pandas.Series.map用法及代碼示例
- Python pandas.Series.max用法及代碼示例
- Python pandas.Series.str.isdecimal用法及代碼示例
- Python pandas.Series.str.get用法及代碼示例
- Python pandas.Series.to_csv用法及代碼示例
- Python pandas.Series.dt.day_name用法及代碼示例
- Python pandas.Series.sample用法及代碼示例
- Python pandas.Series.eq用法及代碼示例
- Python pandas.Series.plot.line用法及代碼示例
- Python pandas.Series.to_pickle用法及代碼示例
- Python pandas.Series.between_time用法及代碼示例
- Python pandas.Series.reindex_like用法及代碼示例
- Python pandas.Series.dt.is_year_end用法及代碼示例
- Python pandas.Series.repeat用法及代碼示例
- Python pandas.Series.str.replace用法及代碼示例
- Python pandas.Series.update用法及代碼示例
- Python pandas.Series.iat用法及代碼示例
- Python pandas.Series.divide用法及代碼示例
- Python pandas.Series.str.endswith用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.head。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。