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.
2 つの時系列データがあり、一方が一定期間他よりも高くなり、別の期間で順序が逆転します。geom_ribbon を使用して 2 つの線の間のギャップを埋めてから、別の色 (たとえば、灰色の場合ts2 > ts1とピンクの場合ts2 < ts1) を使用できますか?
ts2 > ts1
ts2 < ts1
ggplot は暗黙のうちに のように動作しているようaes(ymin=pmin(ymin,ymax), ymax=pmax(ymin,ymax))に見えますが、2 つのうちどちらが実際に大きいかは気にしません。
aes(ymin=pmin(ymin,ymax), ymax=pmax(ymin,ymax))