R/logistic_reg.R

Defines functions basic_logistic_reg

Documented in basic_logistic_reg

#' Logistic Regression
#' 
#' basic_logistic_reg function that performs logistic regression, implemented here for baseline unit testing.
#' 
#' @param x the design matrix, with predictors as columns.
#' @param y the response vector.
#' @return vector of coefficients.
#' @export
basic_logistic_reg<-function(x,y){
  #print('Calling Rcpp function logistic_reg_')
  return(basic_logistic_reg_(x, y))
}
CCGill/LRpadding documentation built on May 11, 2020, 12:21 a.m.