Quantile Regression Fitting by Exterior Point Methods
This function controls the details of QR fitting by the simplex approach
embodied in the algorithm of Koenker and d'Orey based on the median
regression algorithm of Barrodale and Roberts. Typically, options
controlling the construction of the confidence intervals would be passed
via the ...{}
argument of rq()
.
rq.fit.br(x, y, tau=0.5, alpha=0.1, ci=FALSE, iid=TRUE, interp=TRUE, tcrit=TRUE)
x |
the design matrix |
y |
the response variable |
tau |
the quantile desired, if tau lies outside (0,1) the whole process is estimated. |
alpha |
the nominal noncoverage probability for the confidence intervals, i.e. 1-alpha is the nominal coverage probability of the intervals. |
ci |
logical flag if T then compute confidence intervals for the parameters
using the rank inversion method of Koenker (1994). See |
iid |
logical flag if T then the rank inversion is based on an assumption of iid error model, if F then it is based on an nid error assumption. See Koenker and Machado (1999) for further details on this distinction. |
interp |
As with typical order statistic type confidence intervals the test
statistic is discrete, so it is reasonable to consider intervals that
interpolate between values of the parameter just below the specified
cutoff and values just above the specified cutoff. If |
tcrit |
Logical flag if T - Student t critical values are used, if F then normal values are used. |
If tau lies in (0,1) then an object of class "rq"
is
returned with various
related inference apparatus. If tau lies outside [0,1] then an object
of class rq.process
is returned. In this case parametric programming
methods are used to find all of the solutions to the QR problem for
tau in (0,1), the p-variate resulting process is then returned as the
array sol containing the primal solution and dsol containing the dual
solution. There are roughly O(n log n) distinct
solutions, so users should
be aware that these arrays may be large and somewhat time consuming to
compute for large problems.
Returns an object of class "rq"
for tau in (0,1), or else of class "rq.process"
.
Note that rq.fit.br
when called for a single tau value
will return the vector of optimal dual variables.
See rq.object
and rq.process.object
for further details.
Koenker, R. and J.A.F. Machado, (1999) Goodness of fit and related inference processes for quantile regression, J. of Am Stat. Assoc., 94, 1296-1310.
data(stackloss) rq.fit.br(stack.x, stack.loss, tau=.73 ,interp=FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.