Inference for Simple Linear Regression
Sep 15 - 16, 2022
Select the pages corresponding to each exercise when you when you submit the assignment on Gradescope.
In your write up:
Write all narrative in complete sentences.
Include an informative title and axis labels on graphs.
Write responses in the context of the data.
Describe distribution using shape, center, spread, and potential outliers. Describe relationships between variables using strength, direction, and shape.
Below is a graph of association between flipper length in millimeters and body mass in grams of three species of penguins in Palmer Station, Antarctica. What are informative title and axis labels for this graph?
Which code chunk would you rather read?
Make code easier to read and debug by
Putting each element on a different line (start a new line after +
and |>
)
Putting spaces before and after operators (+
, -
, *
, =
, |>
)
In general, avoiding long lines of code, i.e. lines longer than 120 characters.
See the Tidyverse Style Guide for more tips on code styling.