Python Matplotlib:向每个子图添加图例

时间:2018-12-27 15:34:24

标签: python matplotlib legend subplot

我想在matplotlib的每个子图中添加一个图例。如下图所示,我的代码仅按“ userId”绘制子图,但未为每个子图的“操作”添加图例。换句话说,我想为每个userId子图添加三个不同的彩色线。

fig, ax = plt.subplots(figsize=(15,7))
airflow.groupby(['date_only','userId']).sum()['flow'].unstack(1).plot(subplots=True, ax=ax)
plt.legend(airflow['maneuver'])

[ ]

0 个答案:

没有答案