ggplot2
我在 2D 和 3D 中使用和绘制相同的散点图plot3d
。为了更好的可读性,我总是喜欢coord_fixed()
在ggplot2
可能的情况下使用散点图。有没有办法在scatter3D
情节中做同样的事情?
MWE:
data(iris)
head(iris)
library(ggplot2)
ggplot(iris, aes(x=Petal.Length, y=Petal.Width)) +
geom_point(pch=16) + theme_light() + coord_fixed()
library(plot3D)
scatter3D(iris$Petal.Length, iris$Sepal.Length, iris$Petal.Width, bty = "u", pch = 16, alpha = 0.5,
xlab = "Petal.Length", ylab = "Sepal.Length", zlab = "Petal.Width", phi = 0, theta = 40,
col.panel = "white", col.grid = "gray", col="black", ticktype = "detailed")