getChildrenClasses {goCluster} | R Documentation |
This function searches for classes that extend the given class and returns their names.
getChildrenClasses(X, where = .GlobalEnv)
X |
The class name of the abstract class. |
where |
The environment that will be searched for children of that class. |
getChildrenClasses
will determine for each class defined in
environment where
if it extends the class X
. The names
of all classes that fall into this category are returned by the function.
The a character vector of all classes defined in environment
where
that extend class X
.
Gunnar Wrobel, work@gunnarwrobel.de, http://www.gunnarwrobel.de.
goCluster-class
,
clusterAnnotation-class
,
clusterData-class
,
clusterAlgorithm-class
,
clusterStatistic-class
,
clusterSignif-class
,
clusterVisual-class
.
## Should return the clustering algorithms provided by goCluster getChildrenClasses("clusterAlgorithm")