Some fixes + refactoring
[agghoo.git] / man / compareRange.Rd
1 % Generated by roxygen2: do not edit by hand
2 % Please edit documentation in R/compareTo.R
3 \name{compareRange}
4 \alias{compareRange}
5 \title{compareRange}
6 \usage{
7 compareRange(
8 data,
9 target,
10 method_s,
11 N = 100,
12 nc = NA,
13 floss = NULL,
14 V_range = c(10, 15, 20, ),
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{V_range}{Values of V to be tested.}
34
35 \item{...}{arguments passed to method_s function(s)}
36 }
37 \description{
38 Run compareMulti on several values of the parameter V.
39 }