我正在绘制一个结构类似于
的pandas数据帧df.groupby([df.index,'groupcol']).mean()['value'].unstack().plot(subplots=True, layout=(3,1))
与
formatDate(date) {
let d = new Date(date * 1000)
return d.getMonth() + 1 + "," + d.getDate
}
所以我得到一排三张图。如何在整个图中添加常规x和y标签,而不是单个图?