Contains the weight of 10 mice. The question is whether the average weight of the mice differs from 25g.

A one sample t-test can be performed to answer to this question.

data("mice")

Format

A data frame with 10 rows and 2 columns

Examples

data(mice) head(as.data.frame(mice))
#> name weight #> 1 M_1 18.9 #> 2 M_2 19.5 #> 3 M_3 23.1 #> 4 M_4 20.1 #> 5 M_5 20.3 #> 6 M_6 23.4