Uses of Class
elki.outlier.density.IsolationForest.Node
-
Packages that use IsolationForest.Node Package Description elki.outlier.density Density-based outlier detection algorithms. -
-
Uses of IsolationForest.Node in elki.outlier.density
Fields in elki.outlier.density declared as IsolationForest.Node Modifier and Type Field Description (package private) IsolationForest.NodeIsolationForest.Node. leftLeft child, may be null(package private) IsolationForest.NodeIsolationForest.Node. rightRight child, may be nullMethods in elki.outlier.density that return IsolationForest.Node Modifier and Type Method Description protected IsolationForest.NodeIsolationForest.ForestBuilder. build(int s, int e, int h)Recursively build the treeprotected IsolationForest.NodeIsolationForest.ForestBuilder. newTree()Build a new tree.Methods in elki.outlier.density with parameters of type IsolationForest.Node Modifier and Type Method Description protected doubleIsolationForest. isolationScore(IsolationForest.Node n, NumberVector v)Search a vector in the tree, return depth (path length)Constructors in elki.outlier.density with parameters of type IsolationForest.Node Constructor Description Node(int dim, double split, int size, IsolationForest.Node left, IsolationForest.Node right)Node constructor.
-