This vignette describes the core functionality of the package by
identifying common trends in the longitudinal dataset that is included
with the package. We begin by loading the required package and the
latrendData dataset.
The latrendData is a synthetic dataset for which the
reference group of each trajectory is available, as indicated by the
Class column. We will use this column at the end of this
vignette to validate the identified model.
Many of the functions of the package require the specification of the
trajectory identifier variable (named Id) and the time
variable (named Time). For convenience, we specify these
variables as package options.
options(latrend.id = "Id", latrend.time = "Time")Prior to attempting to model the data, it is worthwhile to visually inspect it.
plotTrajectories(latrendData, response = "Y")The presence of clusters is not apparent from the plot. With any longitudinal analysis, one should first consider whether clustering brings any benefit to the representation of heterogeneity of the data over a single common trend representation, or a multilevel model. In this demonstration, we omit this step under the prior knowledge that the data was generated via distinct mechanisms.
Assuming the appropriate (cluster) trajectory model is not known in advance, non-parametric longitudinal cluster models can provide a suitable starting point.
As an example, we apply longitudinal
-means
(KML). First, we need to define the method. At the very least we need to
indicate the response variable the method should operate on. Secondly,
we should indicate how many clusters we expect. We do not need to define
the id and time arguments as we have set these
as package options. We use the nbRedrawing argument
provided by the KML package for reducing the number of repeated random
starts to only a single model estimation, in order to reduce the
run-time of this example.
kmlMethod <- lcMethodKML(response = "Y", nClusters = 2, nbRedrawing = 1)
kmlMethodAs seen in the output from the lcMethodKML object, the
KML method is defined by additional arguments. These are specific to the
kml package.
The KML model is estimated on the dataset via the
latrend function.
kmlModel <- latrend(kmlMethod, data = latrendData)Now that we have fitted the KML model with 2 clusters, we can print a summary by calling:
kmlModelAs we do not know the best number of clusters needed to represent the data, we should consider fitting the KML model for a range of clusters. We can then select the best representation by comparing the solutions by one or more cluster metrics.
We can specify a range of lcMethodKML methods based on a
prototype method using the lcMethods function. This method
outputs a list of lcMethod objects. A structured summary is
obtained by calling as.data.frame.
kmlMethods <- lcMethods(kmlMethod, nClusters = 1:7)
as.data.frame(kmlMethods)The list of lcMethod objects can be fitted using the
latrendBatch function, returning a list of
lcModel objects.
kmlModels <- latrendBatch(kmlMethods, data = latrendData, verbose = FALSE)
kmlModelsWe can compare each of the solutions via one or more cluster metrics.
Considering the consistent improvements achieved by KML for an
increasing number of clusters, identifying the best solution by
minimizing a metric would lead to an overestimation. Instead, we perform
the selection via a manual elbow method, using the
plotMetric function.
plotMetric(kmlModels, c("logLik", "BIC", "WMAE"))We have selected the 4-cluster model as the preferred representation.
We will now inspect this solution in more detail. Before we can start,
we first obtain the fitted lcModel object from the list of
fitted models.
kmlModel4 <- subset(kmlModels, nClusters == 4, drop = TRUE)
kmlModel4The plotClusterTrajectories function shows the estimated
cluster trajectories of the model.
plotClusterTrajectories(kmlModel4)We can get a better sense of the representation of the cluster trajectories when plotted against the trajectories that have been assigned to the respective cluster.
plot(kmlModel4)The cluster assignment for each available subject is obtained using:
trajectoryAssignments(kmlModel4)We can use this to construct a table of the cluster per subject, and merge it into the original data for further analysis.
# make sure to change the Id column name for your respective id column name
subjectClusters = data.frame(Id = ids(kmlModel4), Cluster = trajectoryAssignments(kmlModel4))
head(subjectClusters)
posthocAnalysisData = merge(latrendData, subjectClusters, by = 'Id')
head(posthocAnalysisData)
aggregate(Y ~ Cluster, posthocAnalysisData, mean)The list of currently supported internal model metrics can be
obtained by calling the getInternalMetricNames
function.
As an example, we will compute the APPA (a measure of cluster separation), and the WRSS and WMAE metrics (measures of model error).
The quantile-quantile (QQ) plot can be used to assess the model for structural deviations.
qqPlot(kmlModel4)Overall, the unexplained errors closely follow a normal distribution. In situations where structural deviations from the expected distribution are apparent, it may be fruitful to investigate the QQ plot on a per-cluster basis.
qqPlot(kmlModel4, byCluster = TRUE, detrend = TRUE)The KML analysis has provided us with clues on an appropriate model for the cluster trajectories. We can use these insights to define a parametric representation of each of the trajectories and cluster them using k-means.
lmkmMethod <- lcMethodLMKM(formula = Y ~ Time)
lmkmMethodWe fit LMKM for 1 to 4 clusters.
lmkmMethods <- lcMethods(lmkmMethod, nClusters = 1:5)
lmkmModels <- latrendBatch(lmkmMethods, data = latrendData, verbose = FALSE)
plotMetric(lmkmModels, c("logLik", "BIC", "WMAE"))All metrics clearly point to the three-cluster solution.
Since we have established a preferred clustered representation of the
data heterogeneity, we can now compare the resulting cluster assignments
to the ground truth from which the latrendData data was
generated.
Using the reference assignments, we can also plot a non-parametric estimate of the cluster trajectories. Note how it looks similar to the cluster trajectories found by our model.
plotClusterTrajectories(latrendData, response = "Y", cluster = "Class")In order to compare the reference assignments to the trajectory
assignments generated by our model, we can create a lcModel
object based on the reference assignments using the
lcModelPartition function.
refTrajAssigns <- aggregate(Class ~ Id, data = latrendData, FUN = data.table::first)
refModel <- lcModelPartition(data = latrendData, response = "Y", trajectoryAssignments = refTrajAssigns$Class)
refModel
plot(refModel)By constructing a reference model, we can make use of the
standardized way in which lcModel objects can be compared.
A list of supported comparison metrics can be obtained via the
getExternalMetricNames function.
Lastly, we compare the agreement in trajectory assignments via the adjusted Rand index.
externalMetric(bestLmkmModel, refModel, "adjustedRand")With a score of
externalMetric(bestLmkmModel, refModel, "adjustedRand"), we
have a near-perfect match. This result is expected, as the dataset was
generated using a growth mixture model.