📜  Pandas DataFrame.head()(1)

📅  最后修改于: 2023-12-03 14:45:02.409000             🧑  作者: Mango

Pandas DataFrame.head() 介绍

简介

Pandas 是 Python 编程语言的一种开源数据分析、数据处理工具。其中 DataFrame 是 Pandas 中最为常用的数据结构之一,它类似于 Excel 表格、SQL 表或 R 中的数据框架,是一个二维表格数据结构,每列可以是不同的数据类型。head() 方法是 DataFrame 的一个函数,它可以用来查看数据框头部的数据,默认显示前 5 行数据。

语法
DataFrame.head(n=5)

其中,n 是一个可选参数,用来指定要显示前 n 行数据,默认值为 5。

返回值

head() 方法返回一个新的数据框,包含 n 行数据,默认为前 5 行,它们与原数据框的类型一致。

例子
导入 Pandas
import pandas as pd
读取 CSV 文件
data = pd.read_csv("data.csv")

其中,data.csv 是一个包含电影信息的 CSV 文件,其前 5 行数据如下:

| Title | Genre | Year | Gross ($M) | | ----- | ----- | ---- | ---------- | | Avatar | Action | 2009 | 760.51 | | Titanic | Drama | 1997 | 659.36 | | The Avengers | Action | 2012 | 623.28 | | Harry Potter and the Deathly Hallows Part 2 | Fantasy | 2011 | 381.01 | | Frozen II | Animated | 2019 | 477.37 |

查看头部数据
data.head()

输出结果为:

                     Title     Genre  Year  Gross ($M)
0                   Avatar    Action  2009      760.51
1                  Titanic     Drama  1997      659.36
2             The Avengers    Action  2012      623.28
3  Harry Potter and the Deathly Hallows Part 2   Fantasy  2011      381.01
4                Frozen II  Animated  2019      477.37
总结

DataFrame.head() 是用来查看数据框头部数据的函数,使用简单、直观,为数据处理和分析提供了方便的工具。