Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

lcMethod-class

lcMethod class


Description

Base class used to define a longitudinal cluster method. It is implemented as a wrapper around a call.

Model estimation is handled through a series of calls implement by the lcMethod object. The calls are made by latrend, in the following order:

  • compose

  • validate

  • prepareData

  • preFit

  • fit

  • postFit

Extracts the assigned label.

Extracts the name of the given object.

Usage

## S4 method for signature 'lcMethod'
compose(method, envir = NULL)

## S4 method for signature 'lcMethod'
fit(method, data, envir, verbose)

## S4 method for signature 'lcMethod'
getLabel(object, ...)

## S4 method for signature 'lcMethod'
getName(object)

## S4 method for signature 'lcMethod'
getShortName(object, ...)

## S4 method for signature 'lcMethod'
length(x)

## S4 method for signature 'lcMethod'
names(x)

## S4 method for signature 'lcMethod'
preFit(method, data, envir, verbose)

## S4 method for signature 'lcMethod'
prepareData(method, data, verbose)

## S4 method for signature 'lcMethod'
postFit(method, data, model, envir, verbose)

## S4 method for signature 'lcMethod'
validate(method, data, envir = NULL, ...)

Arguments

method

The lcMethod object.

envir

The environment in which the lcMethod should be evaluated

data

The data, as a data.frame, on which the model will be trained.

verbose

A R.utils::Verbose object indicating the level of verbosity.

object

The object to extract the label from.

...

Additional arguments.

x

The lcMethod object.

model

The lcModel object returned by fit().

Details

Because the lcMethod arguments may be unevaluated, evaluation functions such as [[ accept an envir argument. A default environment can be assigned or obtained from a lcMethod object using the environment() function.

Value

The updated lcMethod object.

An lcModel object.

The extracted label, as character.

A character vector of argument names.

An environment that will be passed to fit().

A data.frame with the post-processed data.

The updated lcModel object.

Either TRUE if all validation checks passed, or a character containing a description of the failed validation checks.

Slots

arguments

A list representing the arguments of the lcMethod object. Arguments are not evaluated upon creation of the method object. Instead, arguments are stored similar to a call object. Do not modify or access.

sourceCalls

A list of calls for tracking the original call after substitution. Used for printing objects which require too many characters (e.g. ,function definitions, matrices).

See Also

Examples

getName(lcMethodKML("Y")) # "longitudinal k-means"
getShortName(lcMethodKML("Y")) # "KML"
m = lcMethodKML("Y")
names(m)

latrend

A Framework for Clustering Longitudinal Data

v1.1.2
GPL (>= 2)
Authors
Niek Den Teuling [aut, cre] (<https://orcid.org/0000-0003-1026-5080>), Steffen Pauws [ctb], Edwin van den Heuvel [ctb], Copyright © 2021 Koninklijke Philips N.V. [cph]
Initial release
2021-04-14

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.