selfesteem.Rd
The dataset contains 10 individuals' self-esteem score on three time points during a specific diet to determine whether their self-esteem improved.
One-way repeated measures ANOVA can be performed in order to determine the effect of time on the self-esteem score.
This data set was taken from the
datarium
R
package.
data("selfesteem")
A data frame with 10 rows and 4 columns.
data(selfesteem)
selfesteem
#> # A tibble: 10 × 4
#> id t1 t2 t3
#> <int> <dbl> <dbl> <dbl>
#> 1 1 4.01 5.18 7.11
#> 2 2 2.56 6.91 6.31
#> 3 3 3.24 4.44 9.78
#> 4 4 3.42 4.71 8.35
#> 5 5 2.87 3.91 6.46
#> 6 6 2.05 5.34 6.65
#> 7 7 3.53 5.58 6.84
#> 8 8 3.18 4.37 7.82
#> 9 9 3.51 4.40 8.47
#> 10 10 3.04 4.49 8.58