Extract the argument names or number of arguments from an lcMethod object.
The number of arguments, as scalar integer.
A character vector of argument names.
Other lcMethod functions:
[[,lcMethod-method,
as.data.frame.lcMethod(),
as.data.frame.lcMethods(),
as.lcMethods(),
as.list.lcMethod(),
evaluate.lcMethod(),
formula.lcMethod(),
lcMethod-class,
update.lcMethod()
method <- lcMethodLMKM(Y ~ Time)
names(method)
#> [1] "time" "id" "nClusters" "center" "standardize"
#> [6] "method" "model" "y" "qr" "singular.ok"
#> [11] "contrasts" "iter.max" "nstart" "algorithm" "formula"
length(method)
#> [1] 15