Some fixes + refactoring
[agghoo.git] / man / compareMulti.Rd
1 % Generated by roxygen2: do not edit by hand
2 % Please edit documentation in R/compareTo.R
3 \name{compareMulti}
4 \alias{compareMulti}
5 \title{compareMulti}
6 \usage{
7 compareMulti(
8 data,
9 target,
10 method_s,
11 N = 100,
12 nc = NA,
13 floss = NULL,
14 verbose = TRUE,
15 ...
16 )
17 }
18 \arguments{
19 \item{data}{Data matrix or data.frame}
20
21 \item{target}{Target vector (generally)}
22
23 \item{method_s}{Either a single function, or a list
24 (examples: agghoo_run, standardCV_run)}
25
26 \item{N}{Number of calls to method(s)}
27
28 \item{nc}{Number of cores. Set to parallel::detectCores() if undefined.
29 Set it to any value <=1 to say "no parallelism".}
30
31 \item{floss}{Loss function to compute the error on testing dataset.}
32
33 \item{verbose}{TRUE to print task numbers and "Errors:" in the end.}
34
35 \item{...}{arguments passed to method_s function(s)}
36 }
37 \description{
38 Run compareTo N times in parallel.
39 }