此问题在此处已有答案:
Visualize lineplot with count of a column(1个答案)
How to show more categories in a line plot of a pivot table(1个答案)
昨天关闭。
plt.figure(figsize=(20,10))
plt.title('Regionwise Killed')
plt.xlabel('Year',fontsize=15)
plt.ylabel('Killed',fontsize=15)
sns.lineplot(x=df['Year'].index,y=df['Year'].value_counts(),hue=df['Region'])
plt.show()
获取输出
在线图中仅获得3个色调区域
我想要这样的线图
1条答案
按热度按时间pqwbnv8z1#
这个会有帮助
然后在新的数据集上构建所需的图表