绘制位于R中3D轴中的2D平面中的线

时间:2017-09-27 23:19:35

标签: r

我想在R中制作以下情节。这只是一个直立的正常密度。

2D line in 3D Axes

1 个答案:

答案 0 :(得分:4)

您想使用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")

enter image description here