-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCVranger.Rd
40 lines (33 loc) · 1.08 KB
/
CVranger.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/CVranger.R
\name{CVranger}
\alias{CVranger}
\title{Title K-fold cross validation of a ranger random forest model.}
\usage{
CVranger(
x,
nfolds = 10,
fm,
os = "windows",
quants,
train.params,
nthreads = detectCores() - 1,
casewts = "tot_wts"
)
}
\arguments{
\item{x}{data.frame of all training instances for model}
\item{nfolds}{integer Number of folds to use for validation}
\item{fm}{Formula to use for random forest model building}
\item{os}{string. Operating system for implementation. Options are "windows" or "linux".}
\item{quants}{numeric vector with lower and upper quantiles for uncertainty prediction intervals}
\item{train.params}{List of training parameters for building random forest models.}
\item{nthreads}{Integer number of logical cores to use for parallelization of function.}
\item{casewts}{Character name of field with case weights values}
}
\value{
data.frame with original fields along with CV predictions
}
\description{
Title K-fold cross validation of a ranger random forest model.
}