series转换成dataframe
时间: 2023-04-27 17:01:23 浏览: 177
pandas把dataframe转成Series,改变列中值的类型方法
可以使用pandas库中的DataFrame()函数将series转换成dataframe。具体操作如下:
1. 导入pandas库
```
import pandas as pd
```
2. 创建一个series
```
s = pd.Series([1, 2, 3, 4, 5])
```
3. 将series转换成dataframe
```
df = pd.DataFrame(s)
```
4. 打印输出dataframe
```
print(df)
```
输出结果为:
```
0
0 1
1 2
2 3
3 4
4 5
```
其中,第一列为原来的series,第二列为自动生成的索引列。
阅读全文