该plotrix::thigmophobe
函数制定方向以尝试阻止标签在 2D 图中重叠。 rgl
没有任何等价物,并且由于您可以旋转绘图,因此您始终可以将标签彼此旋转。但是,下面的函数会尝试为一个特定视图放置标签,以便它们不会重叠。
thigmophobe.text3d <- function(x, y = NULL, z = NULL, texts, ...) {
xyz <- xyz.coords(x, y, z)
# Get the coordinates as columns in a matrix in
# homogeneous coordinates
pts3d <- rbind(xyz$x, xyz$y, xyz$z, 1)
# Apply the viewing transformations and convert
# back to Euclidean
pts2d <- asEuclidean(t(par3d("projMatrix") %*%
par3d("modelMatrix") %*%
pts3d))
# Find directions so that the projections don't overlap
pos <- plotrix::thigmophobe(pts2d)
# Set adjustments for the 4 possible directions
adjs <- matrix(c(0.5, 1.2,
1.2, 0.5,
0.5, -0.2,
-0.2, 0.5),
4, 2, byrow = TRUE)
# Plot labels one at a time in appropriate directions.
for (i in seq_along(xyz$x))
text3d(pts3d[1:3, i], texts = texts[i],
adj = adjs[pos[i],], ...)
}
上面的函数存在一些问题:它是基于rgl::text3d
而不是plot3D::text3D
,所以可选参数不同;它一次绘制一个标签,如果您有很多标签,它可能会效率低下,它不进行错误检查等。
编辑添加:
未发布的 0.99.20 版本rgl
增加了一个thigmophobe3d
功能来做到这一点。您现在必须从https://r-forge.r-project.org/R/?group_id=234或 Github 镜像https://github.com/rforge/rgl获取它。