gpt4 book ai didi

python - 如何根据排序值绘制单列

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:37 24 4
gpt4 key购买 nike

假设我有一个只有一列的数据框。我对它进行了排序,当我尝试绘制排序值时,绘图是根据索引绘制的,而不是根据排序值绘制的。

如何实现根据排序值绘制的图?

我希望情节是从顶部下降到底部的曲线。

Ex 代码:

import pandas as pd
import matplotlib.pyplot as plt
a=pd.DataFrame()
a['col']=(4,5,8,10,1,0,15,20)
a_sorted=a.sort_values(by='col',ascending=False)
plt.plot(a_s)

最佳答案

我相信您需要默认索引 Series.reset_indexdrop=True 参数:

a_sorted=a.sort_values(by='col',ascending=False).reset_index(drop=True)

然后也在工作Series.plot :

a_sorted.plot()

另一个解决方案是通过 Series.values 绘制 numpy 1d 数组:

a_sorted=a.sort_values(by='col',ascending=False)
plt.plot(a_sorted.values)

或者使用sorting in descending order :

plt.plot(-np.sort(-a['col']))

关于python - 如何根据排序值绘制单列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55295534/

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