Massachusetts Test Score Data
The dataset contains data on test performance, school characteristics and student demographic backgrounds for school districts in Massachusetts.
data("MASchools")
A data frame containing 220 observations on 16 variables.
character. District code.
character. Municipality name.
Expenditures per pupil, regular.
Expenditures per pupil, special needs.
Expenditures per pupil, bilingual.
Expenditures per pupil, occupational.
Expenditures per pupil, total.
Students per computer.
Special education students (per cent).
Percent qualifying for reduced-price lunch.
Student-teacher ratio.
Per capita income.
4th grade score (math + English + science).
8th grade score (math + English + science).
Average teacher salary.
Percent of English learners.
The Massachusetts data are district-wide averages for public elementary school districts in 1998. The test score is taken from the Massachusetts Comprehensive Assessment System (MCAS) test, administered to all fourth graders in Massachusetts public schools in the spring of 1998. The test is sponsored by the Massachusetts Department of Education and is mandatory for all public schools. The data analyzed here are the overall total score, which is the sum of the scores on the English, Math, and Science portions of the test. Data on the student-teacher ratio, the percent of students receiving a subsidized lunch and on the percent of students still learning english are averages for each elementary school district for the 1997–1998 school year and were obtained from the Massachusetts department of education. Data on average district income are from the 1990 US Census.
Online complements to Stock and Watson (2007).
Stock, J. H. and Watson, M. W. (2007). Introduction to Econometrics, 2nd ed. Boston: Addison Wesley.
## Massachusetts data("MASchools") ## compare with California data("CASchools") CASchools$stratio <- with(CASchools, students/teachers) CASchools$score4 <- with(CASchools, (math + read)/2) ## Stock and Watson, parts of Table 9.1, p. 330 vars <- c("score4", "stratio", "english", "lunch", "income") cbind( CA_mean = sapply(CASchools[, vars], mean), CA_sd = sapply(CASchools[, vars], sd), MA_mean = sapply(MASchools[, vars], mean), MA_sd = sapply(MASchools[, vars], sd)) ## Stock and Watson, Table 9.2, p. 332, col. (1) fm1 <- lm(score4 ~ stratio, data = MASchools) coeftest(fm1, vcov = vcovHC(fm1, type = "HC1")) ## More examples, notably the entire Table 9.2, can be found in: ## help("StockWatson2007")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.