我有一个使用 RGL 的 3D 图。我想使用颜色制作相同的图来突出某些变量的分布。为此,我想拥有相同的地块,如何找到并设置地块的方向?
一旦我做了一个初步的绘图,我会移动它以找到一个不错的显示角度,我想保存这个角度并将其合并到未来的绘图脚本中。有人对如何做到这一点有建议吗?
library(rgl)
plot3d(iris)
#play with the plot to find a good angle
#save the angle for future plots
本的评论基本上回答了你的问题;这仅适用expand.dots
于他写的内容;)
## In an inital session:
library(rgl)
plot3d(iris)
## Now move the image around to an orientation you like
## Save RGL parameters to a list object
pp <- par3d(no.readonly=TRUE)
## Save the list to a text file
dput(pp, file="irisView.R", control = "all")
.......
## Then, in a later session, to recreate the plot just as you had it:
library(rgl)
pp <- dget("irisView.R")
plot3d(iris)
par3d(pp)