This homework assignment will test your overall R know-how, and allow you to practice using RMarkdown.

Complete the following tasks in a new R markdown script in R studio. For each question, first give a brief description (e.g., “Question 1: calculate the lowest miles/gallon in mtcars”), and then provide R code using "```" and the echo = TRUE argument. When finished, Knit your script together into an html report.


Write code that completes the following tasks:


(1) What is the the lowest miles/gallon value listed in the the built in mtcars dataset? Print this value to the screen.
(2) Using the mtcars dataset, make a new dataframe called cars.new that has only two columns: the miles per gallon and the number of cylinders.
(3) Write some code to sum the number of datapoints with ≥20mpg? (It’s kind of fun, because they can use a sum of booleans)
(4) In your new cars.new object, coerce the cyl column into a factor.
(5) Make a histogram (use = hist()) for mpg in cars.new.
(6) Write a new function called myFunc that calculates the min, max, and mean of a vector, and returns those values in a new vector.
(7) Use your function to calculate the min, max, and mean of the first column in the mtcars dataset (mpg).
(8) Write a for loop that uses your new function to caclulate the min, max, and mean for each column in the mtcars dataset, printing the answer to the screen as it goes.
(9) Use the function apply to calculate the min, max, and mean of each column in mtcars using your new function myfunc.