pub struct DTrees_Node { /* private fields */ }
Expand description

The class represents a decision tree node.

Implementations

Trait Implementations

Wrap the specified raw pointer Read more

Return an the underlying raw pointer while consuming this wrapper. Read more

Return the underlying raw pointer. Read more

Return the underlying mutable raw pointer Read more

Value at the node: a class label in case of classification or estimated function value in case of regression. Read more

Class index normalized to 0..class_count-1 range and assigned to the node. It is used internally in classification trees and tree ensembles. Read more

Index of the parent node

Index of the left child node

Index of right child node

Default direction where to go (-1: left or +1: right). It helps in the case of missing values. Read more

Index of the first split

Value at the node: a class label in case of classification or estimated function value in case of regression. Read more

Class index normalized to 0..class_count-1 range and assigned to the node. It is used internally in classification trees and tree ensembles. Read more

Index of the parent node

Index of the left child node

Index of right child node

Default direction where to go (-1: left or +1: right). It helps in the case of missing values. Read more

Index of the first split

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.