我试图在 3D 中绘制我的变量,我需要增加线条之间的空间,以便创建更好的视角。同样由于某种原因,a 有数字而不是变量名称,我有 43 个变量,但我只能看到 1 到 50 之间的数字。我需要修复我的轴,但我不知道如何修复。
colors <- colors[as.numeric(b2$Level)]
scatterplot3d(b2[,1:3], pch = "", type="h", color = "#1b9e77", angle=45,
lwd = 5, scale.y = 0.1, box = FALSE,
xlim = c(1, 43), ylim = c(1, 6), zlim = c(1, 40))
我的数据看起来像这样
Item Level Mode Cluster Category
1 E1 1 9.875528 1 Errors
2 E1 2 7.699147 1 Errors
3 E1 3 19.897967 1 Errors
4 E1 4 23.157261 1 Errors
5 E1 5 28.429043 1 Errors
6 E1 6 10.941055 1 Errors
[scatterplot3D][1]