ComenzarEmpieza gratis

A basic experiment

ToothGrowth is a built-in R dataset from a study that examined the effect of three different doses of Vitamin C on the length of the odontoplasts, the cells responsible for teeth growth in 60 guinea pigs, where tooth length was the measured outcome variable. Let's load ToothGrowth into our environment,do some exploratory data analysis, and perform a t-test to get an idea of the purpose of a basic experiment.

Este ejercicio forma parte del curso

Experimental Design in R

Ver curso

Ejercicio interactivo práctico

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

# Load the ToothGrowth dataset
data(___)

# View the first 6 rows of ToothGrowth
___(___)
Editar y ejecutar código