Pandas DataFrame head tail 查看前后n行数据
【摘要】 所属的课程名称及链接[AI基础课程--常用框架工具]环境信息* ModelArts * Notebook - Multi-Engine 2.0 (python3) * JupyterLab - Notebook - Conda-python3 * pandas 0.22.0Pandas DataFrame head tail 查看前后n行数据my_df = pd.DataF...
所属的课程名称及链接
环境信息
- * ModelArts
- * Notebook - Multi-Engine 2.0 (python3)
- * JupyterLab - Notebook - Conda-python3
- * pandas 0.22.0
- * JupyterLab - Notebook - Conda-python3
- * Notebook - Multi-Engine 2.0 (python3)
Pandas DataFrame head tail 查看前后n行数据
my_df = pd.DataFrame(data=np.arange(40).reshape(5,8), # 5*8的矩阵
index=list("abcde"), # 行索引
columns=list("ABCDEFGH")) # 列索引
print("my_df\n",my_df)
# 前两行
print("my_df.head(2)\n",my_df.head(2))
# 后一行
print("my_df.tail(2)\n",my_df.tail(1))
my_df
A B C D E F G H
a 0 1 2 3 4 5 6 7
b 8 9 10 11 12 13 14 15
c 16 17 18 19 20 21 22 23
d 24 25 26 27 28 29 30 31
e 32 33 34 35 36 37 38 39
my_df.head(2)
A B C D E F G H
a 0 1 2 3 4 5 6 7
b 8 9 10 11 12 13 14 15
my_df.tail(2)
A B C D E F G H
e 32 33 34 35 36 37 38 39
help
help(my_df.head)
Help on method head in module pandas.core.generic:
head(n=5) method of pandas.core.frame.DataFrame instance
Return the first n rows.
Parameters
----------
n : int, default 5
Number of rows to select.
Returns
-------
obj_head : type of caller
The first n rows of the caller object.
help(my_df.tail)
Help on method tail in module pandas.core.generic:
tail(n=5) method of pandas.core.frame.DataFrame instance
Return the last n rows.
Parameters
----------
n : int, default 5
Number of rows to select.
Returns
-------
obj_tail : type of caller
The last n rows of the caller object.
备注
1. 感谢老师的教学与课件
2. 欢迎各位同学一起来交流学习心得^_^
3. 沙箱实验、认证、论坛和直播,其中包含了许多优质的内容,推荐了解与学习。
2. 欢迎各位同学一起来交流学习心得^_^
3. 沙箱实验、认证、论坛和直播,其中包含了许多优质的内容,推荐了解与学习。
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)