getArgumentExclusions | R Documentation |
Returns the names of arguments that should be excluded during instantiation of the specification.
getArgumentExclusions(object, ...)
## S4 method for signature 'lcMethod'
getArgumentExclusions(object)
object |
The object. |
... |
Not used. |
A character vector
of argument names.
This function only needs to be implemented if you want to avoid users from specifying redundant arguments or arguments that are set automatically or conditionally on other arguments.
setMethod("getArgumentExclusions", "lcMethodExample", function(object) { c( "doPlot", "verbose", callNextMethod() ) }) Adding `callNextMethod()` to the end of the return vector enables inheriting exclusions from superclasses.
getArgumentDefaults
lcMethod getArgumentExclusions
Other lcMethod implementations:
getArgumentDefaults()
,
lcMethod-class
,
lcMethodAkmedoids
,
lcMethodCrimCV
,
lcMethodDtwclust
,
lcMethodFeature
,
lcMethodFunFEM
,
lcMethodFunction
,
lcMethodGCKM
,
lcMethodKML
,
lcMethodLMKM
,
lcMethodLcmmGBTM
,
lcMethodLcmmGMM
,
lcMethodMclustLLPA
,
lcMethodMixAK_GLMM
,
lcMethodMixtoolsGMM
,
lcMethodMixtoolsNPRM
,
lcMethodRandom
,
lcMethodStratify
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.