'Series' object has no attribute 'pivot'
时间: 2023-11-28 16:45:39 浏览: 108
Python 从attribute到property详解
当我们在使用pandas的pivot函数时,如果出现“'Series' object has no attribute 'pivot'”的错误,这通常是因为我们使用的是Series对象而不是DataFrame对象。因为Series对象没有pivot函数,只有DataFrame对象才有pivot函数。
以下是一个演示如何使用DataFrame对象的pivot函数的例子:
假设我们有以下数据:
```python
import pandas as pd
data = {'A': ['foo', 'foo', 'foo', 'bar', 'bar', 'bar'],
'B': ['one', 'one', 'two', 'two', 'one', 'one'],
'C': [1, 2, 3, 4, 5, 6],
'D': [2, 4, 6, 8, 10, 12]}
df = pd.DataFrame(data)
```
我们可以使用pivot函数将数据从长格式转换为宽格式:
```python
df_pivot = df.pivot(index='A', columns='B', values='C')
print(df_pivot)
```
输出结果为:
```
B one two
A
bar 7 4
foo 1 3
```
阅读全文