dataframe去掉索引
时间: 2023-11-18 20:13:19 浏览: 64
Python DataFrame 设置输出不显示index(索引)值的方法
5星 · 资源好评率100%
可以使用 `reset_index()` 方法来去掉 DataFrame 的索引,例如:
```python
import pandas as pd
# 创建一个带有索引的 DataFrame
df = pd.DataFrame({'a': [1, 2, 3], 'b': [4, 5, 6]}, index=['x', 'y', 'z'])
# 输出带有索引的 DataFrame
print(df)
# 去掉索引并输出
print(df.reset_index(drop=True))
```
输出结果:
```
a b
x 1 4
y 2 5
z 3 6
a b
0 1 4
1 2 5
2 3 6
```
阅读全文