Chapter 1 Exercises Home › Forums › Introduction to Educational and Psychological Measurement Using R › Chapter 1 Exercises Tagged: exercises, iepmr This topic has 2 replies, 1 voice, and was last updated 6 years, 10 months ago by Tony. Viewing 2 reply threads Author Posts June 6, 2018 at 20:43 #78 TonyKeymaster Post here your solutions to exercises from Chapter 1. Include the exercise number and text. Make sure your code is reproducible. June 6, 2018 at 21:11 #80 TonyKeymaster 1. Find descriptive statistics for the age variable using dstudy(). What is the mean age? What is the largest age recorded in the PISA data set? Confirm these results using the base functions mean() and max(). library("epmr") dstudy(PISA09$age) mean(PISA09$age) max(PISA09$age) This reply was modified 6 years, 10 months ago by Tony. June 7, 2018 at 13:08 #85 TonyKeymaster 2. Report the frequency distribution as a table for PISA09$grade. What proportion of students are in 10th grade? grade_tab <- table(epmr::PISA09$grade) round(grade_tab / sum(grade_tab), 2) Author Posts Viewing 2 reply threads You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In