vocabulary.csv

The data in vocabulary.csv, adapted from data provided by Bock (1975), come from the Laboratory School of the University of Chicago and include scaled test scores across four grades from the vocabulary section of the Cooperative Reading Test for \(n=64\) students. The attributes in the dataset include:

Preview

# Import data
vocab = readr::read_csv(file = "https://raw.githubusercontent.com/zief0002/bespectacled-antelope/main/data/vocabulary.csv")

# View data
vocab
# A tibble: 64 × 6
      id vocab_08 vocab_09 vocab_10 vocab_11 female
   <dbl>    <dbl>    <dbl>    <dbl>    <dbl>  <dbl>
 1     1     1.75     2.6      3.76     3.68      1
 2     2     0.9      2.47     2.44     3.43      0
 3     3     0.8      0.93     0.4      2.27      0
 4     4     2.42     4.15     4.56     4.21      1
 5     5    -1.31    -1.31    -0.66    -2.22      0
 6     6    -1.56     1.67     0.18     2.33      0
 7     7     1.09     1.5      0.52     2.33      0
 8     8    -1.92     1.03     0.5      3.04      0
 9     9    -1.61     0.29     0.73     3.24      0
10    10     2.47     3.64     2.87     5.38      1
# … with 54 more rows

References

Bock, R. D. (1975). Multivariate statistical methods in behavioral research. New York: McGraw-Hill.