dataframe添加列名
时间: 2023-09-24 18:05:33 浏览: 239
python 给DataFrame增加index行名和columns列名的实现方法
要向数据框添加列名,请使用以下代码:
```python
import pandas as pd
# 创建数据框
df = pd.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]})
# 添加列名
df.columns = ['new_col1', 'new_col2']
# 输出数据框
print(df)
```
输出:
```
new_col1 new_col2
0 1 4
1 2 5
2 3 6
```
在这个例子中,我们首先创建了一个数据框,然后使用`columns`属性添加了新的列名。注意,列名的数量必须与数据框中的列数相同。
阅读全文