没有所有值的R中的3D直方图

时间:2019-07-04 23:56:13

标签: r 3d

我正在尝试在R中制作3d直方图,而z轴出现问题。我不想要一个具有所有可能值的矩阵,而只是想绘制给出的数据。

x           y              z       color
warranty    cleanliness    cost    type
5           89             79      Hoover
3           77             73      Dyson
7           93             98      Dyson
3           73             54      Shark
6           82             78      Hoover
3           67             65      Shark
4           59             47      Dyson
9           94             99      Hoover

我在scatterplot3d中得到了一些类似的东西,但我希望3d hist而不是折线图显示条形图。

threed <- scatterplot3d(df$warranty, df$cleanliness, df$cost, color = as.numeric(as.factor(df$type)), xlab = "warranty", ylab = "Cleanliness", zlab = "cost", type = "h")

0 个答案:

没有答案