gpt4 book ai didi

python - 如何从没有索引的 Pandas 系列中提取值

转载 作者:行者123 更新时间:2023-12-03 13:52:51 25 4
gpt4 key购买 nike

打印数据结构时,我有以下内容:

print(speed_tf)

44.0 -24.4
45.0 -12.2
46.0 -12.2
47.0 -12.2
48.0 -12.2
Name: Speed, dtype: float64

我相信这是 Pandas 系列,但不确定

我只想要第一栏

-24.4
-12.2
-12.2
-12.2
-12.2

我尝试了 speed_tf.reset_index()
  index  Speed
0 44.0 -24.4
1 45.0 -12.2
2 46.0 -12.2
3 47.0 -12.2
4 48.0 -12.2

我怎样才能获得索引从0开始的Speed值?

最佳答案

speed_tf.values 

应该做你想做的。

关于python - 如何从没有索引的 Pandas 系列中提取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62086686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com