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