| admit {pscl} | R Documentation |
Ordinal ratings (faculty evaluations) of applicants to a Political Science PhD Program.
data(admit)
A data frame with 106 observations on the following 6 variables.
score1 < 2 < 3 < 4 < 5gre.quantgre.verbalapptfemaleJackman, Simon. 2004. "What Do We Learn From Graduate Admissions Committees?: A Multiple-Rater, Latent Variable Model, with Incomplete Discrete and Continuous Indicators." Political Analysis. 12(4):400-424.
data(admit)
summary(admit)
require(MASS)
## ordered probit model
op1 <- polr(score ~ gre.quant + gre.verbal + ap + pt + female,
Hess=TRUE,
data=admit,
method="probit")
summary(op1)
hitmiss(op1)
logLik(op1)
pR2(op1)