英文:
Get values of DataFrame index column
问题
如何将索引的值获取为一个普通列(df["index"]
)?
英文:
I have a DataFrame
with an index column that uses pandas TimeStamps
.
How can I get the values of the index as if it were a normal column (df["index"]
)?
答案1
得分: 4
你可以通过以下方式从你的数据框中获取索引值:
df.index.values
上述代码将返回你的数据框的索引值数组。
你可以简单地将其存储在一个变量中。你也可以通过以下方式将值获取为一个列表:
list(df.index.values)
英文:
You can get the index values from your dataframe by the following:
df.index.values
The above will return an array of the index values of your dataframe.
You can simply store that in a variable. You can also get the values as a list by the following:
list(df.index.values)
答案2
得分: 1
你可以使用 reset_index() 方法将索引转换为常规列。
英文:
You can convert the index to a regular column by using the reset_index() method.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论