lqm
is used to fit linear quantile models based on the asymmetric Laplace distribution.
lqm(formula, data, subset, na.action, weights = NULL, tau = 0.5,
contrasts = NULL, control = list(), fit = TRUE)
an object of class formula
for fixed effects: a symbolic description of the model to be fitted.
an optional data frame, list or environment (or object coercible by as.data.frame
to a data frame) containing the variables in the model. If not found in data, the variables are taken from environment(formula)
, typically the environment from which lqm
is called.
an optional vector specifying a subset of observations to be used in the fitting process.
a function which indicates what should happen when the data contain NAs. The default is set by the na.action
setting of options
.
An optional vector of weights to be used in the fitting process.
the quantile(s) to be estimated. This must be a number between 0 and 1, otherwise the execution is stopped. If more than one quantile is specified, rounding off to the 4th decimal must give non--duplicated values of tau
, otherwise the execution is stopped.
an optional list. See the contrasts.arg of model.matrix.default
.
list of control parameters of the fitting process. See lqmControl
.
logical flag. If FALSE
the function returns a list of arguments to be passed to lqm.fit.gs
.
lqm
returns an object of class
lqm
.
The function summary
is used to obtain and print a summary of the results.
An object of class lqm
is a list containing the following components:
a vector of coefficients. theta
is a named matrix of coefficients when tau
is a vector of values.
the scale parameter.
the gradient.
the log--likelihood.
details on optimization (see lqm.fit.gs
).
the matched call.
names for theta.
the terms object used.
the number of observations.
the length of theta.
the number of residual degrees of freedom.
the estimated quantile(s).
the model matrix.
the model response.
the weights used in the fitting process (a vector of 1's if weights
= NULL).
starting values for theta.
list of control parameters used for optimization (see lqmControl
).
The function computes an estimate on the tau-th quantile function of the response, conditional on the covariates, as specified by the formula argument. The quantile predictor is assumed to be linear. The function maximizes the (log)likelihood of a Laplace regression which is equivalent to the minimization of the weighted sum of absolute residuals (Koenker and Bassett, 1978). The optimization algorithm is based on the gradient of the Laplace log--likelihood (Bottai, Orsini and Geraci, 2013).
Bottai M, Orsini N, Geraci M (2015). A Gradient Search Maximization Algorithm for the Asymmetric Laplace Likelihood, Journal of Statistical Computation and Simulation, 85(10), 1919-1925.
Chen C (2007). A finite smoothing algorithm for quantile regression. Journal of Computational and Graphical Statistics, 16(1), 136-164.
Koenker R and Bassett G (1978). Regression Quantiles. Econometrica 46(1), 33--50.
# NOT RUN {
set.seed(123)
n <- 500
p <- 1:3/4
test <- data.frame(x = runif(n,0,1))
test$y <- 30 + test$x + rnorm(n)
fit.lqm <- lqm(y ~ x, data = test, tau = p,
control = list(verbose = FALSE, loop_tol_ll = 1e-9), fit = TRUE)
fit.lqm
# }
Run the code above in your browser using DataLab