rq.sdf | R Documentation |
Fits a quantile regression model that uses weights and variance estimates appropriate for the data.
rq.sdf(
formula,
data,
tau = 0.5,
weightVar = NULL,
relevels = list(),
jrrIMax = 1,
dropOmittedLevels = TRUE,
defaultConditions = TRUE,
recode = NULL,
returnNumberOfPSU = FALSE,
omittedLevels = deprecated(),
...
)
formula |
a |
data |
an |
tau |
the quantile to be estimated. The value could be set between 0 and 1 with a default of 0.5. |
weightVar |
a character indicating the weight variable to use.
The |
relevels |
a list. Used to change the contrasts from the default treatment contrasts to the treatment contrasts with a chosen omitted group (the reference group). The name of each element should be the variable name, and the value should be the group to be omitted (the reference group). |
jrrIMax |
when using the jackknife variance estimation method, the default estimation option, |
dropOmittedLevels |
a logical value. When set to the default value of |
defaultConditions |
a logical value. When set to the default value of |
recode |
a list of lists to recode variables. Defaults to |
returnNumberOfPSU |
a logical value set to |
omittedLevels |
this argument is deprecated. Use |
... |
additional parameters passed from |
The function computes an estimate on the tau
-th conditional quantile function of the response,
given the covariates, as specified by the formula argument. Like lm.sdf()
, the
function presumes a linear specification for the quantile regression model (i.e., that the
formula defines a model that is linear in parameters). Unlike lm.sdf()
, the jackknife is the
only applicable variance estimation method used by the function.
For further details on quantile regression models and how they are implemented in R, see Koenker
and Bassett (1978), Koenker (2005), and the vignette from the quantreg
package—
accessible by vignette("rq",package="quantreg")
—on which this function is
built.
For further details on how left-hand side variables, survey sampling weights, and estimated
variances are correctly handled, see lm.sdf
or the vignette titled
Statistical Methods Used in EdSurvey.
An edsurvey.rq
with the following elements:
call |
the function call |
formula |
the formula used to fit the model |
tau |
the quantile to be estimated |
coef |
the estimates of the coefficients |
se |
the standard error estimates of the coefficients |
Vimp |
the estimated variance from uncertainty in the scores (plausible value variables) |
Vjrr |
the estimated variance from sampling |
M |
the number of plausible values |
varm |
the variance estimates under the various plausible values |
coefm |
the values of the coefficients under the various plausible values |
coefmat |
the coefficient matrix (typically produced by the summary of a model) |
weight |
the name of the weight variable |
npv |
the number of plausible values |
njk |
the number of the jackknife replicates used; set to |
rho |
the mean value of the objective function across the plausible values |
Trang Nguyen, Paul Bailey, and Yuqi Liao
Binder, D. A. (1983). On the variances of asymptotically normal estimators from complex surveys. International Statistical Review, 51(3), 279–292.
Johnson, E. G., & Rust, K. F. (1992). Population inferences and variance estimation for NAEP data. Journal of Education Statistics, 17(2), 175–190.
Koenker, R. W., & Bassett, G. W. (1978). Regression quantiles, Econometrica, 46, 33–50.
Koenker, R. W. (2005). Quantile regression. Cambridge, UK: Cambridge University Press.
Rubin, D. B. (1987). Multiple imputation for nonresponse in surveys. New York, NY: Wiley.
rq
## Not run:
# read in the example data (generated, not real student data)
sdf <- readNAEP(path=system.file("extdata/data", "M36NT2PM.dat", package = "NAEPprimer"))
# conduct quantile regression at a given tau value (by default, tau is set to be 0.5)
rq1 <- rq.sdf(formula=composite ~ dsex + b017451, data=sdf, tau = 0.8)
summary(rq1)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.