标签: r
我想在R中制作以下情节。这只是一个直立的正常密度。
答案 0 :(得分:4)
您想使用scatterplot3d包
scatterplot3d
library(scatterplot3d) d <- rnorm(10000) y <- density(d)$y x <- density(d)$x z <- rep(0, length(x)) scatterplot3d(x=x, y=z, z=y, type="l")