gpt4 book ai didi

python - Pandas 系列操作 - 改变 x 和 y

转载 作者:行者123 更新时间:2023-11-28 22:32:51 24 4
gpt4 key购买 nike

我有一个 pandas.core.series.Series 对象 x,当我执行 print x 时输出以下内容:

2     681
1 575
3 573
4 381
0 340

如何将 x 更改为 x2 以便 print x2 输出:

681     2
575 1
573 3
381 4
340 0

我想这样做,否则当我尝试绘制直方图 (x.plot.hist()) 时,我没有得到我想要的结果。

最佳答案

你想要条形图吗?

s.plot.bar()

enter image description here

pd.Series(s.index, index=s.values, name='a').plot.bar()

enter image description here


直方图作为一种以图形方式表示聚合数据的方式毫无意义。您的系列只有 5 个长度……没有什么可以真正聚合的。

关于python - Pandas 系列操作 - 改变 x 和 y,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40535572/

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