我想在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'])
[]