plot - Which R plot3D color scheme is suitable for printing? -


i use plot3d::scatter3d function in order visualize 3d dataset. works fine, however, colors represent z-level barely visible when printed (especially yellow).

my code far:

library(plot3d) require(plot3d)  plot3d::scatter3d(     rdataset$cores, rdataset$workload, rdataset$speedup,     xlab='cores', ylab='workload', zlab='speedup',     theta=320, phi=30 ) 

could recommend cool parameters col and/or colkey?

to make points distinct, how this?

library(plot3d)  df <- data.frame(x = 1:10, y = 50:59, z = 101:110)  plot3d::scatter3d(df$x, df$y, df$z, xlab='cores', ylab='workload',                   zlab='speedup', theta=320, phi=30,  col = "blue") 


Comments

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - .htaccess mod_rewrite for dynamic url which has domain names -

Website Login Issue developed in magento -