pandas DataFrame怎么使用
时间: 2023-05-11 19:03:29 浏览: 148
Pandas库之DataFrame使用的学习笔记
Pandas DataFrame 是一个二维的表格数据结构,可以用来处理和分析数据。使用 Pandas DataFrame,你可以轻松地读取、处理和分析数据。以下是一些基本的使用方法:
1. 创建 DataFrame:可以使用 pd.DataFrame() 函数来创建一个 DataFrame,可以从列表、字典、CSV 文件等数据源中创建。
2. 查看 DataFrame:可以使用 .head()、.tail()、.info() 等方法来查看 DataFrame 的前几行、后几行、基本信息等。
3. 选择数据:可以使用 .loc[]、.iloc[]、.at[]、.iat[] 等方法来选择 DataFrame 中的数据。
4. 修改数据:可以使用 .loc[]、.iloc[]、.at[]、.iat[] 等方法来修改 DataFrame 中的数据。
5. 过滤数据:可以使用布尔索引、.query()、.isin() 等方法来过滤 DataFrame 中的数据。
6. 排序数据:可以使用 .sort_values()、.sort_index() 等方法来对 DataFrame 中的数据进行排序。
7. 分组数据:可以使用 .groupby()、.agg()、.apply() 等方法来对 DataFrame 中的数据进行分组和聚合。
8. 合并数据:可以使用 .merge()、.concat() 等方法来合并多个 DataFrame 中的数据。
以上是一些基本的使用方法,更多详细的使用方法可以参考 Pandas 官方文档。
阅读全文