[][src]Struct randomforests::DecisionTree

pub struct DecisionTree { /* fields omitted */ }

Implements a DecisionTree.

Methods

impl DecisionTree[src]

pub fn build(
    _attribute: String,
    config: &TreeConfig,
    data: &mut Dataset
) -> Option<Box<DecisionTree>>
[src]

Build a decision tree with a String attribute, a TreeConfig and a dataset (a Vec<Item>). Return either a Some(DecisionTree), if successful, or None if not.

pub fn predict(_tree: Option<Box<DecisionTree>>, item: Item) -> Option<Value>[src]

Return the DecisionTree prediction for a question expressed as an Item.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.