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.Node
IsolationForest.Node. left
Left child, may be null(package private) IsolationForest.Node
IsolationForest.Node. right
Right child, may be nullMethods in elki.outlier.density that return IsolationForest.Node Modifier and Type Method Description protected IsolationForest.Node
IsolationForest.ForestBuilder. build(int s, int e, int h)
Recursively build the treeprotected IsolationForest.Node
IsolationForest.ForestBuilder. newTree()
Build a new tree.Methods in elki.outlier.density with parameters of type IsolationForest.Node Modifier and Type Method Description protected double
IsolationForest. 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.
-