**关闭。**此题需要debugging details。目前不接受答复。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
8天前关闭
Improve this question
我试图绘制一个图表与多个情节一样线,散点等,线情节我试图情节是不显示在图表上。我想要一个这样的线图:
fig, ax = plt.subplots(figsize=(20, 6))
plt.plot(result, color='red')
plt.show()
我希望它显示在下面的图中。
下面是我的代码:
fig, ax = plt.subplots(figsize=(20, 10))
fig.suptitle("Performance Ratio Evolution\nFrom 2019-07-01 to 2022-03-24", fontsize=20)
plt.scatter('Date', 'PR', data=l2, label="<2", marker='D', color='#000080')
plt.scatter('Date', 'PR', data=g2l4, label="2~4", marker='D', s=15, color="#ADD8E6")
plt.scatter('Date', 'PR', data=g4l6, label="4~6", marker='D', s=15, color="#FFA500")
plt.scatter('Date', 'PR', data=g6, label=">6", marker='D', s=15, color="#964B00")
plt.plot(df['PR'].rolling(30).mean(),label='30-d moving avg of pr') #The one which is not showing up
plt.legend(["<2", "2~4", "4~6", ">6"])
y = [73.9 * (1 - 0.008) ** i for i in range(4)]
start_date = datetime.strptime("2019-07-01", "%Y-%m-%d")
end_date = datetime.strptime("2023-03-24", "%Y-%m-%d")
dates = []
while start_date <= end_date:
dates.append(start_date)
start_date += timedelta(days=365)
plt.step(dates, y, label="Performance Ratio", color="green")
plt.ylim(0, 100)
date_fmt = mdates.DateFormatter('%b/%y')
ax.xaxis.set_major_formatter(date_fmt)
ax.set_xlim([date(2019, 7, 1), date(2022, 3, 24)])
plt.ylabel("Performance Ratio (%)")
plt.legend(loc="center")
# plt.savefig("performance_ratio_evolution.png")
以下是情节:
我做错了什么?
2条答案
按热度按时间ne5o7dgx1#
问题出在散点图代码里。。如果你看第一幅图的x轴,你会发现它们都是数字。如果打印
df['PR'].rolling(30).mean()
,它将是一个数字列表。另一方面,散点图都是针对日期绘制的。将线图更改为plt.plot(df['Date'], df['PR'].rolling(30).mean(),label='30-d moving avg of pr')
(基本上添加df.Date作为x轴应该可以。我用一些虚拟数据做了这个,它似乎起作用了。完整的代码和图下面…ccgok5k52#
你想画一条水平线吗?请尝试
pyplot.axhline(y=somevalue)
,在您的情况下,使用