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.
私はggplotチャートを持っています
q3 <- ggplot(y, aes(T,C))+ geom_line()
とカーネル密度
den <-density(y$C)
カーネル密度グラフを y 軸に重ねるにはどうすればよいですか?
ご協力いただきありがとうございます
DWinのアイデアをフォローアップすると、これはあなたが探しているようなものかもしれません。
dat <- data.frame(x = 1:100, y = 1:100, z = rnorm(100)) ggplot(dat) + geom_point(aes(x = y/100,y = x/100)) + geom_density(aes(x = z)) + coord_flip()
xのとy美学の逆転に注意してくださいgeom_point。
x
y
geom_point