latrendCV {latrend} | R Documentation |
Cluster longitudinal data over k folds
Description
Apply k-fold cross validation for internal cluster validation. Creates k random subsets ("folds") from the data, estimating a model for each of the k-1 combined folds.
Usage
latrendCV(
method,
data,
folds = 10,
seed = NULL,
parallel = FALSE,
errorHandling = "stop",
envir = NULL,
verbose = getOption("latrend.verbose")
)
Arguments
method |
An lcMethod object specifying the longitudinal cluster method to apply, or the name (as |
data |
A |
folds |
The number of folds. Ten folds by default. |
seed |
The seed to use. Optional. |
parallel |
Whether to enable parallel evaluation. See latrend-parallel. Method evaluation and dataset transformation is done on the calling thread. |
errorHandling |
Whether to |
envir |
The |
verbose |
The level of verbosity. Either an object of class |
Value
A lcModels
object of containing the folds
training models.
See Also
Other longitudinal cluster fit functions:
latrend()
,
latrendBatch()
,
latrendBoot()
,
latrendRep()
Other validation methods:
createTestDataFold()
,
createTestDataFolds()
,
createTrainDataFolds()
,
latrendBoot()
,
lcModel-data-filters
Examples
data(latrendData)
method <- lcMethodLMKM(Y ~ Time, id = "Id", time = "Time")
if (require("caret")) {
model <- latrendCV(method, latrendData, folds = 5, seed = 1)
model <- latrendCV(method, subset(latrendData, Time < .5), folds = 5)
}