df.to_dict
时间: 2023-12-26 15:28:14 浏览: 132
Pandas把dataframe或series转换成list的方法
`df.to_dict()`是Pandas中的一个方法,用于将DataFrame对象转换为字典。根据提供的引用内容,`df.to_dict()`有两种用法:
1. `df.to_dict()`:将DataFrame转换为字典,其中字典的键是DataFrame的列名,字典的值是对应列的数据。这种用法可以通过传递参数`orient='dict'`来实现,例如:
```python
df.to_dict(orient='dict')
```
2. `df.to_dict("dict")`:与第一种用法相同,将DataFrame转换为字典,其中字典的键是DataFrame的列名,字典的值是对应列的数据。这种用法可以直接传递字符串参数`"dict"`来实现,例如:
```python
df.to_dict("dict")
```
需要注意的是,`df.to_dict()`方法默认将DataFrame的行索引作为字典的键,如果想要将列名作为键,需要传递参数`orient='dict'`或`orient='columns'`。
阅读全文