cdfquantregC {cdfquantreg} | R Documentation |
Censored CDF-Quantile Probability Distributions
Description
cdfquantregC
is the a function to fit a censored cdf quantile regression with a variety of distributions .
Usage
cdfquantregC(
formula,
fd = NULL,
sd = NULL,
data,
family = NULL,
censor = "DB",
c1 = NULL,
c2 = NULL,
start = NULL,
control = cdfqr.control(...),
...
)
Arguments
formula |
A formula object, with the dependent variable (DV) on the left of an ~ operator, and predictors on the right. For the part on the right of '~', the specification of the location and dispersion submodels can be separated by '|'. So |
fd |
A string that specifies the parent distribution. |
sd |
A string that specifies the child distribution. |
data |
The data in a data.frame format |
family |
If 'fd' and 'sd' are not provided, the name of a member of the family of distributions can be provided (See |
censor |
A string variable to indicate how many censored point is used- only left censored |
c1 |
The left censored value, if NULL, the minimum value in the data will be used |
c2 |
The right censored value, if NULL, the maximum value in the data will be used |
start |
The starting values for model fitting. If not provided, default values will be used. |
control |
Control optimization parameters (See |
... |
Currently ignored. |
Details
The cdfquantreg function fits a quantile regression model with a distributions from the cdf-quantile family selected by the user (Smithson and Shou, 2015). The model is specified in a two-part formula, one part containing the predictors of the location parameter, and the second part containing the predictors of the dispersion parameter. The models are fitted in two stages, the first of which uses the Nelder-Mead algorithm and the second of which takes the estimates from the first stage and applies the BFGS algorithm to refine the estimates.
Value
An object of class cdfquantreg
will be returned. Generic functions such as summary,print (e.g., print.cdfqr) and coef can be used to extract output (see summary.cdfqr for more details about the generic functions that can be used).
Class of object is a list with the following output:
- coefficients
A named vector of coefficients.
- residuals
Raw residuals, the difference between the fitted values and the data.
- fitted
The fitted values, including full model fitted values, fitted values for the mean component, and fitted values for the dispersion component.
- rmse
The model root mean squared errors
- rmseLogit
The root mean squared errors between the logit of the fitted values, and the logit of the response values.
- vcov
The variance-covariance matrix of the coefficient estimates.
- AIC, BIC
Akaike's Information Criterion and Bayesian Information Criterion.
- deviance
The deviance for the model.
Examples
data(cdfqrExampleData)
fit <- cdfquantregC(crc99 ~ vert | confl, c1 = 0.001, c2= 0.999,
fd ='t2',sd ='t2', data = JurorData)
summary(fit)