获取DataFrame索引列的值

huangapple go评论67阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年6月29日 01:43:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/76575561.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定