用法:
Series.tail(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.tail() animal 4 monkey 5 parrot 6 shark 7 whale 8 zebra
查看最後
n
行(本例中為三行)>>> df.tail(3) animal 6 shark 7 whale 8 zebra
對於
n
的負值>>> df.tail(-3) animal 3 lion 4 monkey 5 parrot 6 shark 7 whale 8 zebra
相關用法
- Python pandas.Series.take用法及代碼示例
- Python pandas.Series.to_csv用法及代碼示例
- Python pandas.Series.to_pickle用法及代碼示例
- Python pandas.Series.to_xarray用法及代碼示例
- Python pandas.Series.to_markdown用法及代碼示例
- Python pandas.Series.to_excel用法及代碼示例
- Python pandas.Series.truediv用法及代碼示例
- Python pandas.Series.to_numpy用法及代碼示例
- Python pandas.Series.to_latex用法及代碼示例
- Python pandas.Series.to_json用法及代碼示例
- Python pandas.Series.tz_localize用法及代碼示例
- Python pandas.Series.to_hdf用法及代碼示例
- Python pandas.Series.to_sql用法及代碼示例
- Python pandas.Series.to_frame用法及代碼示例
- Python pandas.Series.to_dict用法及代碼示例
- Python pandas.Series.truncate用法及代碼示例
- Python pandas.Series.to_clipboard用法及代碼示例
- Python pandas.Series.transform用法及代碼示例
- Python pandas.Series.add_prefix用法及代碼示例
- Python pandas.Series.map用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.tail。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。