dataframe中添加一列series
时间: 2023-05-18 09:04:02 浏览: 1490
使用Python向DataFrame中指定位置添加一列或多列的方法
4星 · 用户满意度95%
可以使用 pandas 库中的 DataFrame 对象的 assign() 方法来添加一列 Series。例如,假设我们有一个 DataFrame 对象 df 和一个 Series 对象 s,我们可以使用以下代码将 s 添加为 df 的一列:
```
import pandas as pd
# 创建 DataFrame 对象
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
# 创建 Series 对象
s = pd.Series([7, 8, 9])
# 使用 assign() 方法添加一列 Series
df = df.assign(C=s)
print(df)
```
输出结果为:
```
A B C
0 1 4 7
1 2 5 8
2 3 6 9
```
阅读全文