| latrendCV | R Documentation |
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.
latrendCV(
method,
data,
folds = 10,
seed = NULL,
parallel = FALSE,
errorHandling = "stop",
envir = NULL,
verbose = getOption("latrend.verbose")
)
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 |
A lcModels object of containing the folds training models.
Other longitudinal cluster fit functions:
latrend(),
latrendBatch(),
latrendBoot(),
latrendRep()
Other validation methods:
createTestDataFold(),
createTestDataFolds(),
createTrainDataFolds(),
latrendBoot(),
lcModel-data-filters
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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.