I\'m studying from a book called \"Introductory Statistics in R\" which uses data from the package \"ISwR\".My problem is that I can\'t load the data on the workspace.When I do<
install.packages("ISLR") #install the package ISLR
library(ISLR)
data(package = "ISLR") #list the datasets in the package ISLR
car=as.data.frame(Auto) #read the dataset Auto in the package ISLR
car