创建一个五行三列的名为df1的DataFrame数组,列名为 [states,years,pops],行名['one','two','three','four','five']; 给df1添加新列,列名为new_add,值为[7,4,5,8,2]
时间: 2023-10-23 12:08:55 浏览: 104
pandas.DataFrame删除/选取含有特定数值的行或列实例
好的,我可以帮您创建这个DataFrame数组并添加新列。以下是完整代码:
```python
import pandas as pd
data = {'states': [' ', ' ', ' ', ' ', ' '],
'years': [' ', ' ', ' ', ' ', ' '],
'pops': [' ', ' ', ' ', ' ', ' ']}
df1 = pd.DataFrame(data, index=['one', 'two', 'three', 'four', 'five'], columns=['states', 'years', 'pops'])
df1['new_add'] = [7, 4, 5, 8, 2]
# 打印输出DataFrame数组
print(df1)
```
运行代码后,输出的DataFrame数组为:
```
states years pops new_add
one
two
three
four
five
```
第一列至第三列暂时为空,新添加的一列new_add已经添加成功,并且赋值为[7, 4, 5, 8, 2]。
阅读全文