R/bc_set_control.R

# The 'bc_set_control' function
# Written by Kevin Potter
# email: kevin.w.potter@gmail.com
# Please email me directly if you
# have any questions or comments
# Last updated 2018-10-04

# Table of contents
# 1) bc_set_control

###
### 1) bc_set_control
###

#' Wrapper for Model Selection during Cross Validation
#'
#' ???
#'
#' @param type ???.
#' @param dat ???.
#' @param control ???.
#'
#' @return ???.
#'
#' @export
#' @examples
#' # ???

bc_set_control = function( type = 'glm', cv, set_control ) {

  control = NULL

  if ( type == 'glm' ) {
    control = bc_set_control.glm( cv, set_control )
  }

  return( control )
}
rettopnivek/binclass documentation built on May 13, 2019, 4:46 p.m.