Learn R Programming

quantreg (version 4.77)

summary.crq: Summary methods for Censored Quantile Regression

Description

Returns a summary object for a censored quantile regression fit. A null value will be returned if printing is invoked.

Usage

## S3 method for class 'crq':
summary(object, taus = 1:4/5, alpha = .05, se="boot", covariance=TRUE,  ...)
## S3 method for class 'summary.crq':
print(x, digits = max(5, .Options$digits - 2), ...)
## S3 method for class 'summary.crqs':
print(x,  ...)
## S3 method for class 'summary.crqs':
plot(x, nrow = 3, ncol = 3, CoxPHit = NULL,  ...)

Arguments

object
An object of class "crq" produced by a call to crq().
x
An object of class "crq" produced by a call to crq().
se
specifies the method used to compute standard standard errors. but the only available method (so far) is "boot". Further arguments to boot.crq and boot.rq
covariance
logical flag to indicate whether the full covariance matrix of the estimated parameters should be returned.
nrow
Number of rows of the plot layout.
ncol
Number of columns of the plot layout.
taus
Quantiles to be summarized.
alpha
Confidence level for summary intervals.
digits
Number of digits to be printed in summary display.
CoxPHit
An object of class coxph produced by coxph.
...
Optional arguments to summary, e.g. to specify bootstrap methods sample sizes, etc. see boot.rq and boot.crq

Value

  • For method "FP" an object of class summary.crqFP is returned with the following components:
  • coefficientsa p by 4 matrix consisting of the coefficients, their estimated standard errors, their t-statistics, and their associated p-values.
  • covthe estimated covariance matrix for the coefficients in the model, provided that cov=TRUE in the called sequence.
  • rdfthe residual degrees of freedom
  • tauthe quantile estimated
  • covthe estimated covariance matrix for the coefficients in the model, provided that cov=TRUE in the called sequence.
  • For method "PH" an object of class summary.crq is returned with the following components:
  • coefficientsa list of p by 6 matrix consisting of the coefficients, upper and lower bounds for a (1-alpha) level confidence interval, their estimated standard errors, their t-statistics, and their associated p-values, one component for each element of the specified taus vector.

Details

For the Fitzenberger-Powell method the resampling strategy used by the se = "boot" method is based on the Bilias, Chen and Ying (2000) proposal. For the Portnoy and Peng-Huang methods the bootstrapping is based on resampling xy pairs using either conventional multinomial resampling or using exponential weighting as in Bose and Chatterjee (2003). Note that the default number of replications is set at $R = 100$ a value that is obviously too small for most applications. This is done merely to speed up the examples in the documentation and facilitate testing. Larger, more appropriate values of $R$ can be passed to the bootstrapping functions via the ... argument of the summary method.

References

Bose, A. and S. Chatterjee, (2003) Generalized bootstrap for estimators of minimizers of convex functions, J. Stat. Planning and Inf, 117, 225-239.

Bilias, Y. Chen, S. and Z. Ying, (2000) Simple resampling methods for censored quantile regression, J. of Econometrics, 99, 373-386.

See Also

crq, QTECox