图例颜色和绘图线颜色不匹配
Legend Color and Plot Line Color Mismatch
Overstack 社区您好,
我是 Python 的初学者,我无法使绘图的颜色与绘图的颜色对齐。
请在下面找到我写的代码:-
merged_genres_mmd_plot.pivot_table(index='release_year', columns='genres', aggfunc='count').plot(figsize=(16,8))
plt.title('Popularity of Genre over the Years', fontsize=18)
plt.legend(['Action','Comedy','Drama','Horror','Western'])
plt.xlabel('Release Year',labelpad = 25)
plt.show()
This is the plot I am getting.
谁能帮我想出一种方法,使图例的颜色与情节的颜色对齐?
提前致谢!
你的问题有几个答案,我认为最好的一个是:
使用您拥有的数据,您可以 select 什么是 x 轴和 y 轴,使用 pl.plot() 您可以绘制所有您拥有的曲线并定义它的标签,如此:
plt.plot(x, y, label = 'Action')
plt.plot(x, y, label = 'Comedy')
.
.
.
plt.legend()
plt.show()
Overstack 社区您好,
我是 Python 的初学者,我无法使绘图的颜色与绘图的颜色对齐。
请在下面找到我写的代码:-
merged_genres_mmd_plot.pivot_table(index='release_year', columns='genres', aggfunc='count').plot(figsize=(16,8))
plt.title('Popularity of Genre over the Years', fontsize=18)
plt.legend(['Action','Comedy','Drama','Horror','Western'])
plt.xlabel('Release Year',labelpad = 25)
plt.show()
This is the plot I am getting.
谁能帮我想出一种方法,使图例的颜色与情节的颜色对齐?
提前致谢!
你的问题有几个答案,我认为最好的一个是:
使用您拥有的数据,您可以 select 什么是 x 轴和 y 轴,使用 pl.plot() 您可以绘制所有您拥有的曲线并定义它的标签,如此:
plt.plot(x, y, label = 'Action')
plt.plot(x, y, label = 'Comedy')
.
.
.
plt.legend()
plt.show()