This is an assignment for coursera Developing Data Products. This is a submission from Leonard
8/4/2020
This is an assignment for coursera Developing Data Products. This is a submission from Leonard
Required Package and data
library(plotly)
data("mtcars")
Code for the interactive plot
plot_ly(data = mtcars, x = ~cyl,
y = ~ mpg, color = ~factor(cyl), type = "box")