data(mtcars)
plot(mtcars$hp, mtcars$mpg)
Check-in 1: R Markdown
- This is a code chunk that opens the
mtcars
dataset, which contains information about on 32 cars from a 1974 issue of the magazine Motor Trend and creates a scatter plot with horsepowerhp
on the x-axis and miles-per-gallonmpg
on the y-axis. Try running this code and Rendering/Knitting your Rmd document. If you have done this correctly, RStudio should produce an html document.
Using this scatter plot, describe the relationship between
mpg
andhp
.Create your own code chunk below this question containing the line of code
print("Hello MATH167R!")
. Then Render/Knit your Rmd document. If you have done this correctly, RStudio should produce an html document.