A quantile regression implementation for the "qreg" class. It uses rq

# S3 method for qreg
chmod(object, ...)

Arguments

object

a list of Y - outcome variable and X - design matrix of class "qreg"

...

additional parameters to be passed to rq, for example tau

Value

fitted model object

Examples

chmod(c_chmod(Y=women$height,X=women$weight,modclass="qreg"),tau=0.45)
#> Call: #> quantreg::rq(formula = object$Y ~ ., tau = 0.45, data = dat) #> #> Coefficients: #> (Intercept) object.X #> 24.5555556 0.2962963 #> #> Degrees of freedom: 15 total; 13 residual