R/clogitboost.R

Defines functions clogitboost

Documented in clogitboost

clogitboost <- function(y, x, strata, iter, rho){
  x <- as.matrix(x)
  y <- as.numeric(y)
  fit <- fitclogitboost(y, x, strata, iter, rho)
  fit$call <- match.call()
  class(fit) <- "clogitboost"
  
  fit
}

Try the clogitboost package in your browser

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

clogitboost documentation built on May 2, 2019, 6:28 a.m.