我使用plot3D::scatter3D
函数来可视化我的3D数据集。一切都很好,但是,印刷时(或特别是黄色)几乎看不到代表z级的颜色。
到目前为止我的代码:
library(plot3D)
require(plot3D)
plot3D::scatter3D(
rdataset$cores, rdataset$workload, rdataset$speedup,
xlab='cores', ylab='workload', zlab='speedup',
theta=320, phi=30
)
您能为col
和/或colkey
推荐一些很酷的参数吗?
答案 0 :(得分:0)
为了使点不同,这是怎么回事?
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")