如何在 Python 中为 ** data.set_index ** 添加图例?

Posted

技术标签:

【中文标题】如何在 Python 中为 ** data.set_index ** 添加图例?【英文标题】:How to add legend for ** data.set_index ** in Python? 【发布时间】:2020-02-20 20:48:18 【问题描述】:

我已经绘制了这个图表,但不知道如何添加图例以及如何更改图表的颜色/形状。

有人知道怎么做吗?

谢谢

Here are the codes and graphs that I have achieved

【问题讨论】:

【参考方案1】:

.plot() 方法中,您可以将标签和颜色(以及许多其他内容)作为参数传递。颜色会立即使用您指定的颜色,但要显示标签,您还需要调用plt.legend()

例子:

df["Some Data"].plot(color="green", label="This is some data")
plt.legend()
plt.show()

【讨论】:

如何改变图形的形状? @钼42

以上是关于如何在 Python 中为 ** data.set_index ** 添加图例?的主要内容,如果未能解决你的问题,请参考以下文章

如何在python中为接口分配IP地址?

如何在 Python 中为 QTableWidget 设置大小提示

如何在 python 中为 xgboost 编写自定义评估指标?

如何在Python中为现有类添加方法?

如何在python中为dict使用点符号?

如何在 python 中为 plotly boxplot 添加标签?