用法:
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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。