2.2 Reading in Repeated Measures Data

We can read in the WISC data directly from the QuantDev website.

filepath <- "https://quantdev.ssri.psu.edu/sites/qdev/files/wisc3raw.csv"
wisc3raw <- read.csv(file=url(filepath), header=TRUE)

Additional details on importing different data types into R can be found here: http://www.statmethods.net/input/importingdata.html.