最佳答案
我如何获得在python熊猫索引列名?这是一个数据框架的例子:
Column 1
Index Title
Apples 1
Oranges 2
Puppies 3
Ducks 4
我要做的是获取/设置dataframe索引标题。以下是我的尝试:
import pandas as pd
data = {'Column 1' : [1., 2., 3., 4.],
'Index Title' : ["Apples", "Oranges", "Puppies", "Ducks"]}
df = pd.DataFrame(data)
df.index = df["Index Title"]
del df["Index Title"]
print df
有人知道怎么做吗?