熊猫散点图组颜色错误

时间:2018-08-16 08:44:20

标签: python python-3.x pandas matplotlib colors

我在熊猫散点图中无法正确可视化我的数据。这是我的“ Aprop”(饲料中成分A的比例)与天数关系图的代码。 “ Feed”组由3个Feed(1,2,3)组成。在下面,您可以在图表上看到结果:全部为绿色,而图例很好地代表了三种颜色。您能帮我改进代码,以便在图形上显示三种颜色吗?

let path = window.location.pathname.split( '/' );

you can see the result on the graph : all is green while the legend represents well the three colors

1 个答案:

答案 0 :(得分:1)

使用带有颜色的字典,并明确说明要用于哪个组的颜色。例如:

color_dict = {1: 'r', 2:'b', 3: 'g'}

并在绘制时添加颜色:

ax.plot(group.Day, group.Aprop,
        marker='o', linestyle='', ms=3,
        label=name, color=color_dict[name]
)