| pisamaths {mitools} | R Documentation |
Maths Performance Data from the PISA 2012 survey in New Zealand
Description
Data on maths performance, gender, some problem-solving variables and some school resource variables. This is actually a weighted survey: see withPV.survey.design in the survey package for a better analyis.
Usage
data("pisamaths")
Format
A data frame with 4291 observations on the following 26 variables.
SCHOOLIDSchool ID
CNTCountry id: a factor with levels
New ZealandSTRATUMa factor with levels
NZL0101NZL0102NZL0202NZL0203OECDIs the country in the OECD?
STIDSTDStudent ID
ST04Q01Gender: a factor with levels
FemaleMaleST14Q02Mother has university qualifications
NoYesST18Q02Father has university qualifications
NoYesMATHEFFMathematics Self-Efficacy: numeric vector
OPENPSMathematics Self-Efficacy: numeric vector
PV1MATH,PV2MATH,PV3MATH,PV4MATH,PV5MATH'Plausible values' (multiple imputations) for maths performance
W_FSTUWTDesign weight for student
SC35Q02Proportion of maths teachers with professional development in maths in past year
PCGIRLSProportion of girls at the school
PROPMA5AProportion of maths teachers with ISCED 5A (math major)
ABGMATHDoes the school group maths students: a factor with levels
No ability grouping between any classesOne of these forms of ability grouping between classes for sOne of these forms of ability grouping for all classesSMRATIONumber of students per maths teacher
W_FSCHWTDesign weight for school
condwtDesign weight for student given school
Source
A subset extracted from the PISA2012lite R package, https://github.com/pbiecek/PISA2012lite
References
OECD (2013) PISA 2012 Assessment and Analytical Framework: Mathematics, Reading, Science, Problem Solving and Financial Literacy. OECD Publishing.
Examples
data(pisamaths)
means<-withPV(list(maths~PV1MATH+PV2MATH+PV3MATH+PV4MATH+PV5MATH), data=pisamaths,
action= quote(by(maths, ST04Q01, mean)), rewrite=TRUE)
means
models<-withPV(list(maths~PV1MATH+PV2MATH+PV3MATH+PV4MATH+PV5MATH), data=pisamaths,
action= quote(lm(maths~ST04Q01*PCGIRLS)), rewrite=TRUE)
summary(MIcombine(models))