pub trait IntoLogisticExplainable {
// Required method
fn into_explainable(self) -> LogisticExplainable;
}Expand description
Extension trait to easily convert LogisticRegression to explainable.
Required Methods§
Sourcefn into_explainable(self) -> LogisticExplainable
fn into_explainable(self) -> LogisticExplainable
Convert to an explainable wrapper.