Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个时间序列数据,一个在某个时期高于另一个,然后在另一个时期反转顺序。我可以使用 geom_ribbon 填充两条线之间的间隙,然后使用不同的颜色(例如灰色 ifts2 > ts1和粉红色 if ts2 < ts1)吗?
ts2 > ts1
ts2 < ts1
在我看来, ggplot 似乎隐含地喜欢aes(ymin=pmin(ymin,ymax), ymax=pmax(ymin,ymax)),并不关心两者中的哪一个实际上更大。
aes(ymin=pmin(ymin,ymax), ymax=pmax(ymin,ymax))