Non linear least squares regression for compositional data | R Documentation |
Non linear least squares regression for compositional data.
ols.compreg(y, x, con = TRUE, B = 1, ncores = 1, xnew = NULL)
y |
A matrix with the compositional data (dependent variable). Zero values are allowed. |
x |
A matrix or a data frame with the predictor variable(s). |
con |
If this is TRUE (default) then the constant term is estimated, otherwise the model includes no constant term. |
B |
If B is greater than 1 bootstrap estimates of the standard error are returned. If B=1, no standard errors are returned. |
ncores |
If ncores is 2 or more parallel computing is performed. This is to be used for the case of bootstrap. If B=1, this is not taken into consideration. |
xnew |
If you have new data use it, otherwise leave it NULL. |
The ordinary least squares between the observed and the fitted compositional data is adopted as the objective function. This involves numerical optimization since the relationship is non linear. There is no log-likelihood.
A list including:
runtime |
The time required by the regression. |
beta |
The beta coefficients. |
covbe |
The covariance matrix of the beta coefficients. If B=1, this is based on the observed information (Hessian matrix), otherwise if B> this is the bootstrap estimate. |
est |
The fitted of xnew if xnew is not NULL. |
Michail Tsagris.
R implementation and documentation: Michail Tsagris mtsagris@uoc.gr.
Murteira, Jose MR, and Joaquim JS Ramalho 2016. Regression analysis of multivariate fractional data. Econometric Reviews 35(4): 515-552.
diri.reg, js.compreg, kl.compreg, comp.reg, comp.reg, alfa.reg
library(MASS)
x <- as.vector(fgl[, 1])
y <- as.matrix(fgl[, 2:9])
y <- y / rowSums(y)
mod1 <- ols.compreg(y, x, B = 1, ncores = 1)
mod2 <- js.compreg(y, x, B = 1, ncores = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.