Nothing
#' resampler class
#'
#' A class for resampling methods such as cross-validation. not intended to be
#' called directly.
#' @include generics.R iterator_class.R
#' @export resampler
#' @examples
#' R = resampler()
#' @param ... named slots and their values.
#' @rdname resampler
#' @return a resampler object
resampler = function(...) {
# new object
out = .resampler(...)
return(out)
}
.resampler<-setClass(
"resampler",
contains = c('iterator'),
slots = c(models = 'model_OR_iterator')
)
setMethod(f = "show",
signature = c("optimiser"),
definition = function(object) {
callNextMethod()
}
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.