Subsetting a lcModels list based on method arguments
Subsetting a lcModels list based on method arguments
## S3 method for class 'lcModels' subset(x, subset, drop = FALSE, ...)
x |
The |
subset |
Logical expression based on the |
drop |
Whether to return a |
... |
Not used. |
A lcModels
list with the subset of lcModel
objects.
Other lcModel list functions:
as.lcModels()
,
lcModels
,
print.lcModels()
data(latrendData) mKML <- lcMethodKML(response = "Y", id = "Id", time = "Time") kml1 <- latrend(mKML, nClusters = 1, latrendData) kml2 <- latrend(mKML, nClusters = 2, latrendData) kml3 <- latrend(mKML, nClusters = 3, latrendData) gmm <- latrend(lcMethodLcmmGMM(fixed = Y ~ Time, mixture = ~ Time, id = "Id", time = "Time"), latrendData) models <- lcModels(kml1, kml2, kml3, gmm) subset(models, nClusters > 1 & .method == 'kml')
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.