dataframe 变series 具体用法
时间: 2023-11-18 11:55:24 浏览: 65
Python pandas库 DataFrame和Series类函数用法Help
将DataFrame中的某一列转换为Series,可以使用以下代码:
```python
import pandas as pd
# 创建DataFrame
df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]})
# 将' a'列转换为Series
s = df['a']
# 打印结果
print(s)
```
输出结果为:
```
0 1
1 2
2 3
Name: a, dtype: int64
```
这样就可以将DataFrame中的某一列转换为Series了。
阅读全文