ComeçarComece de graça

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.

Este exercício faz parte do curso

R For SAS Users

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Run lm() for age by shuckedWeight and by shellWeight
lmshucked <- lm(___ ~ ___, ___)
lmshell <- lm(___ ~ ___, ___)
Editar e executar o código