R/predict.MagicModel.R

#' @title Predict
#' @export
predict.MagicModel <- function(object, newdata, ...) {
   ans <- rep('Magic Answer', nrow(newdata))
   return(ans)
}
wtong5456/MagicModel documentation built on May 9, 2019, 7:47 a.m.