[[,lcMethod-method {latrend} | R Documentation |
Retrieve and evaluate a lcMethod argument by name
Description
Retrieve and evaluate a lcMethod argument by name
Usage
## S4 method for signature 'lcMethod'
x$name
## S4 method for signature 'lcMethod'
x[[i, eval = TRUE, envir = NULL]]
Arguments
x |
The |
name |
The argument name, as |
i |
Name or index of the argument to retrieve. |
eval |
Whether to evaluate the call argument (enabled by default). |
envir |
The |
Value
The argument call
or evaluation result.
See Also
Other lcMethod functions:
as.data.frame.lcMethod()
,
as.data.frame.lcMethods()
,
as.lcMethods()
,
as.list.lcMethod()
,
evaluate.lcMethod()
,
formula.lcMethod()
,
lcMethod-class
,
names,lcMethod-method
,
update.lcMethod()
Examples
method <- lcMethodLMKM(Y ~ Time, id = "Id", time = "Time", nClusters = 3)
method$nClusters # 3
m = lcMethodLMKM(Y ~ Time, id = "Id", time = "Time", nClusters = 5)
m[["nClusters"]] # 5
k = 2
m = lcMethodLMKM(Y ~ Time, id = "Id", time = "Time", nClusters = k)
m[["nClusters", eval=FALSE]] # k
[Package latrend version 1.6.1 Index]