ComenzarEmpieza gratis

ANOVA for vocabulary score vs. (self identified) social class

Let's conduct the ANOVA for evaluating whether there is a difference in the average vocabulary scores between the levels of (self identified) social class.

Este ejercicio forma parte del curso

Inference for Numerical Data in R

Ver curso

Instrucciones del ejercicio

  • Run the ANOVA with the aov() function, and store the resulting object as aov_wordsum_class.
  • View a tidy() output of this object.
  • Interpret the result in context of the data and the research question. Use a 5% significance level.

Ejercicio interactivo práctico

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

# Run an analysis of variance on wordsum vs. class
aov_wordsum_class <- ___

# Tidy the model
tidy(aov_wordsum_class)
Editar y ejecutar código