ComenzarEmpieza gratis

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 ejercicio forma parte del curso

R For SAS Users

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

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