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