I'm trying to create a 3D scatter plot of a planetary group, each body properly labeled. The next code creates the plot I need.
with(bpmg, {
car::scatter3d(x = X, y = Y,z = Z,
surface = FALSE,
point.col = color,
labels = Name,
id.n = nrow(bpmg))
})
I cannot find in the documentation, however, a way to format the labels of each planet in such a way they don't have that size and/or color. Is there anything I can do?