2つの異なるプロットをオーバーレイしようとしています。1つはgeom_boxplot
、もう1つですgeom_jitter
。それぞれに独自のカラースケールを持たせたいです。しかし、2番目のカラースケールを追加すると、エラーが発生します
"Scale for 'fill' is already present. Adding another scale for 'fill',
which will replace the existing scale."
私は何か間違ったことをしていると思います。何かアドバイスをいただければ幸いです
これは私の作業コードの大まかな例です:
P <- ggplot(dat) +
geom_boxplot(aes(x=ve, y=metValue, fill=metric), alpha=.35, w=0.6, notch=FALSE, na.rm = TRUE) +
scale_fill_manual(values=cpalette1) +
geom_hline(yintercept=0, colour="#DD4466", linetype = "longdash") +
theme(legend.position="none")
P + geom_jitter(dat2, aes(x=ve, y=metValue, fill=atd),
size=2, shape=4, alpha = 0.4,
position = position_jitter(width = .03, height=0.03), na.rm = TRUE) +
scale_fill_manual(values=cpalette2)
dat
dat2
スキーマは同じですが、値が異なります。
オーバーレイグラフに対処するいくつかの例を見つけましたが、この特定の懸念に対処するように見えるものはありませんでした。