- loading the plotly package
- loading the data set
- checking for the names of the variables
library(plotly)
library(datasets)
data("mtcars")
colnames(mtcars)
## [1] "mpg" "cyl" "disp" "hp" "drat" "wt" "qsec" "vs" "am" "gear" ## [11] "carb"
2024-07-05
library(plotly)
library(datasets)
data("mtcars")
colnames(mtcars)
## [1] "mpg" "cyl" "disp" "hp" "drat" "wt" "qsec" "vs" "am" "gear" ## [11] "carb"