5/12/2020

06 December, 2020

library(datasets)
data(trees)
library(plotly)
plot_ly( data = trees, x = ~ Girth, y = ~ Height, z = ~ Volume,
type = "scatter3d", mode = "markers", color = ~ Volume) 

Slide with Plot

Thank you