| 1 | % Generated by roxygen2: do not edit by hand |
| 2 | % Please edit documentation in R/compareTo.R |
| 3 | \name{compareTo} |
| 4 | \alias{compareTo} |
| 5 | \title{compareTo} |
| 6 | \usage{ |
| 7 | compareTo( |
| 8 | data, |
| 9 | target, |
| 10 | method_s, |
| 11 | rseed = -1, |
| 12 | floss = NULL, |
| 13 | verbose = TRUE, |
| 14 | ... |
| 15 | ) |
| 16 | } |
| 17 | \arguments{ |
| 18 | \item{data}{Data matrix or data.frame} |
| 19 | |
| 20 | \item{target}{Target vector (generally)} |
| 21 | |
| 22 | \item{method_s}{Either a single function, or a list |
| 23 | (examples: agghoo_run, standardCV_run)} |
| 24 | |
| 25 | \item{rseed}{Seed of the random generator (-1 means "random seed")} |
| 26 | |
| 27 | \item{floss}{Loss function to compute the error on testing dataset.} |
| 28 | |
| 29 | \item{verbose}{TRUE to request methods to be verbose.} |
| 30 | |
| 31 | \item{...}{arguments passed to method_s function(s)} |
| 32 | } |
| 33 | \description{ |
| 34 | Compare a list of learning methods (or run only one), on data/target. |
| 35 | } |