Chapter 2 Exercise 9

Sign in to test your solution.
Auto <- read.csv("Auto.csv", header=T, na.strings="?") Auto <- na.omit(Auto) class(Auto) range(Auto$mpg) sapply(Auto[, 1:7], range)
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.