tnagler / eecop

Copula based estimation equations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

eecop

eecop is an R package for copula-based regression by the method of Nagler and Vatter (2020). A model for marginal distributions and copula between response and covariates is estimated. Predictions for quantiles or expectiles can then be derived from solving a weighted estimating equations.

Installation

You can install the released version of eecop from github with:

devtools::install_github("tnagler/eecop")

Example

library(eecop)
## model with continuous variables
x <- matrix(rnorm(200), 100, 2)
y <- rowSums(x) + rnorm(100)

fit <- eecop(y, x)
predict(fit, x, t = c(0.5, 0.9), type = "quantile")

References

Nagler, T. and Vatter, T. (2020). Solving estimating equations with copulas. arXiv:1801.10576

About

Copula based estimation equations

License:GNU General Public License v3.0


Languages

Language:R 100.0%