R/methods_generics.r

Defines functions updt

#Updating parameters
updt <- function(obj,...){
  UseMethod("updt")
}

#COPY
#objs <- function(obj,...){
#  UseMethod("objs")
#}

#COPY
#res <- function(obj,...){
#  UseMethod("res")
#}

#COPY
#subset <- function(obj,...){
#  UseMethod("subset")
#}

#COPY
#preprocess <- function(obj,...){
#  UseMethod("preprocess")
#}

#COPY
#train <- function(obj,...){
#  UseMethod("train")
#}

#predict is already a generic method
#predict <- function(obj,...){
#  UseMethod("predict")
#}

#COPY
#postprocess <- function(obj,...){
#  UseMethod("postprocess")
#}

#COPY
#evaluate <- function(obj,...){
#  UseMethod("evaluate")
#}

#COPY
#workflow <- function(obj,...){
#  UseMethod("workflow")
#}

#COPY
#benchmark <- function(obj,...){
#  UseMethod("benchmark")
#}

Try the TSPred package in your browser

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

TSPred documentation built on Jan. 21, 2021, 5:10 p.m.