R/alfa.reg.R

Defines functions alfa.reg

Documented in alfa.reg

################################
#### alfa-regression
#### Tsagris Michail 11/2015
#### mtsagris@yahoo.gr
#### References: Tsagris Michail (2015)
#### Regression analysis with compositional data containing zero values
#### Chilean Journal of Statistics, 6(2): 47-57
################################
alfa.reg <- function(y, x, a, xnew = NULL, yb = NULL) {

  reg <- function(para, ya, ax, a, ha, d, D) {
    be <- matrix(para, ncol = d)
    zz <- cbind( 1, exp(ax %*% be) )
    ta <- rowSums(zz)
    za <- zz / ta
    ma <- ( D / a * za - 1/a ) %*% ha
    as.vector(ya - ma)
  }

  if ( is.null(yb) ) {
    ya <- Compositional::alfa(y, a)$aff
  } else  ya <- yb
  x <- model.matrix(ya ~., data.frame(x) )
  ax <- a * x

  D <- dim(y)[2]
  d <- D - 1  ## dimensionality of the simplex

  if ( a == 0 ) {
    mod <- Compositional::comp.reg(y, x[, -1], yb = yb)
    be <- mod$be
    seb <- mod$seb
    runtime <- mod$runtime

  } else {
    runtime <- proc.time()
    ha <- t( Compositional::helm(D) )
    ini <- as.vector( solve(crossprod(x), crossprod(x, ya) ) )
    mod <- minpack.lm::nls.lm(par = ini, fn = reg, ya = ya, ax = ax, a = a, ha = ha, d = d, D = D, control = list(maxiter = 500))
    be <- matrix(mod$par, ncol = d)
    runtime <- proc.time() - runtime
    seb <- sqrt( diag( solve(mod$hessian) ) )
    seb <- matrix(seb, ncol = d)
  }  ## end if (a == 0)

  est <- NULL
  if ( !is.null(xnew) ) {
    xnew <- model.matrix(~., data.frame(xnew) )
    est <- cbind( 1, exp(xnew %*% be) )
    est <- est/Rfast::rowsums(est)
  }

  if ( is.null( colnames(x) ) ) {
    p <- dim(x)[2] - 1
    rownames(be) <- c("constant", paste("X", 1:p, sep = "") )
    if ( !is.null(seb) )  rownames(seb) <- c("constant", paste("X", 1:p, sep = "") )
  } else {
    rownames(be)  <- c("constant", colnames(x)[-1] )
    if ( !is.null(seb) )  rownames(seb) <- c("constant", colnames(x)[-1] )
  }

  list(runtime = runtime, be = be, seb = seb, est = est)
}




# alfa.reg <- function(y, x, a, xnew = NULL, yb = NULL, seb = FALSE) {
#   ## y is the compositional data (dependent variable)
#   ## x is the independent variables
#   ## a is the value of alpha
#   ## internal function for the alfa-regression
#   reg <- function(para, ya, ax, a, ha, d, D) {
#     be <- matrix(para, ncol = d)
#     zz <- cbind( 1, exp(ax %*% be) )
#     ta <- rowSums(zz)
#     za <- zz / ta
#     ma <- ( D / a * za - 1/a ) %*% ha
#     - 2 * sum( diag( crossprod(ya, ma) ) ) + sum( diag( crossprod(ma) ) )
#   }
#
#   if ( is.null(yb) ) {
#     ya <- Compositional::alfa(y, a)$aff
#   } else  ya <- yb
#   x <- model.matrix(ya ~., data.frame(x) )
#   ax <- a * x
#
#   D <- dim(y)[2]
#   d <- D - 1  ## dimensionality of the simplex
#
#   if ( a == 0 ) {
#     mod <- Compositional::comp.reg(y, x[, -1], yb = yb)
#     be <- mod$be
#     seb <- mod$seb
#     runtime <- mod$runtime
#
#   } else {
#     runtime <- proc.time()
#     ha <- t( helm(D) )
#     ini <- as.vector( solve(crossprod(x), crossprod(x, ya) ) )
#     qa1 <- nlminb( ini, reg, ya = ya, ax = ax, a = a, ha = ha, d = d, D = D, control = list(iter.max = 5000) )
#     qa1 <- optim( qa1$par, reg, ya = ya, ax = ax, a = a, ha = ha, d = d, D = D, control = list(maxit = 5000) )
#     qa2 <- optim( qa1$par, reg, ya = ya, ax = ax, a = a, ha = ha, d = d, D = D, control = list(maxit = 5000) )
#     while (qa1$value - qa2$value > 1e-04) {
#       qa1 <- qa2
#       qa2 <- optim( qa1$par, reg, ya = ya, ax = ax, a = a, ha = ha, d = d, D = D, control = list(maxit = 5000), hessian = TRUE )
#     }
#     be <- matrix(qa2$par, ncol = d)
#     runtime <- proc.time() - runtime
#
#     if ( seb ) {
#       seb <- sqrt( diag( Rfast::spdinv(qa2$hessian) ) )
#       seb <- matrix(seb, ncol = d)
#     } else  seb <- NULL
#   }  ## end if (a == 0)
#
#   est <- NULL
#   if ( !is.null(xnew) ) {
#     xnew <- model.matrix(~., data.frame(xnew) )
#     est <- cbind( 1, exp(xnew %*% be) )
#     est <- est/Rfast::rowsums(est)
#   }
#
#   if ( is.null( colnames(x) ) ) {
#     p <- dim(x)[2] - 1
#     rownames(be) <- c("constant", paste("X", 1:p, sep = "") )
#     if ( !is.null(seb) )  rownames(seb) <- c("constant", paste("X", 1:p, sep = "") )
#   } else {
#     rownames(be)  <- c("constant", colnames(x)[-1] )
#     if ( !is.null(seb) )  rownames(seb) <- c("constant", colnames(x)[-1] )
#   }
#
#   list(runtime = runtime, be = be, seb = seb, est = est)
# }

Try the Compositional package in your browser

Any scripts or data that you put into this service are public.

Compositional documentation built on Sept. 12, 2024, 7:37 a.m.