就是这种形式的图,我现在有几组数据A、B、C,每组数据有两个中心点core1和core2,中心点core1对应一组置信区间的上界up1和下界down1,中心点core2有一组置信区间的上界up2和下界down2。
也就是说,数据长这样:
A:core1, up1, down1, core2, up2, down2
B:core1, up1, down1, core2, up2, down2
C:core1, up1, down1, core2, up2, down2
然后我想要画成种图,就用一张图表示,不用两个子图,应该如何画呢?
https://matplotlib.net/stable/gallery/statistics/errorbar_lim...
https://matplotlib.net/stable/gallery/statistics/errorbar_fea...
在示例里挑个类似的. 实在不行, 就自己用 matplot 的 Line 对象往figure上加元素.
plt.subplots(1, 2)
这是一个一行2列的图