我正在使用plot3D库的scatter3D函数进行3D散点图,但我找不到给出语法的方法,以便绘图包含刻度标签。
我的代码如下:
library(plot3D)
A <- c(0, 1, 0, 1)
B <- c(0, 0, 1, 1)
y <- c(52, 74, 62, 80)
scatter3D(x = A, y = B, z = y, col = "red", phi = 0, cex = 2, bty = "g", alpha = 0.5 , pch = 20, nticks = 10,
xlab = "Time Factor", ylab = "Corn Factor", zlab = "Outcome", main = "Experiment with 2 Factors")
您的建议将不胜感激。
答案 0 :(得分:1)
在documentation中,提到了这个论点:
... arguments to be passed down
这些传递给persp。在那里声明,ticktype默认为“简单”,但可以改为“详细”&#39;。所以添加参数
ticktype= "detailed"
应该有效。希望这有帮助!