CommencerCommencer gratuitement

Abalone age predictors

To wrap up this course, in these last two exercises you will use many of the skills you've learned. You will run two regression models comparing the model fits of abalone age by either shucked weight or shell weight.

The dplyr package and abaloneKeep dataset are loaded for you.

Cet exercice fait partie du cours

R For SAS Users

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Run lm() for age by shuckedWeight and by shellWeight
lmshucked <- lm(___ ~ ___, ___)
lmshell <- lm(___ ~ ___, ___)
Modifier et exécuter le code