# 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 )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.