私は2つのggplotを持っています。どうにかしてそれらを一枚の絵に描くことはできますか?別の My code の背景としての 1 つ:
ggplot(data = dd, aes(x = x, y = y)) +
+ geom_point(colour="red", size = 3, aes(alpha=col))
ggplot(data=df, aes(x=x, y=y)) + geom_segment(aes(xend=x+dx, yend=y+dy), arrow = arrow(length = unit(0.3,"cm")))
ありがとう