I use plot3D::scatter3D
function in order to visualize my 3D dataset. Everything works fine, however, the colors that represent the z-level are barely visible when printed (especially yellow).
My code so far:
library(plot3D)
require(plot3D)
plot3D::scatter3D(
rdataset$cores, rdataset$workload, rdataset$speedup,
xlab='cores', ylab='workload', zlab='speedup',
theta=320, phi=30
)
Could you recommend some cool parameters for col
and/or colkey
?