library(plotly)
plot_ly(mtcars,
x = mtcars$wt,
y = mtcars$mpg,
z = mtcars$cyl,
type = "scatter3d",
color = mtcars$disp
)
09/09/2020
library(plotly)
plot_ly(mtcars,
x = mtcars$wt,
y = mtcars$mpg,
z = mtcars$cyl,
type = "scatter3d",
color = mtcars$disp
)