pub struct FittedOrdinalEncoder { /* private fields */ }Expand description
A fitted ordinal encoder holding per-column category-to-index mappings.
Created by calling Fit::fit on an OrdinalEncoder.
Implementations§
Source§impl FittedOrdinalEncoder
impl FittedOrdinalEncoder
Sourcepub fn categories(&self) -> &[Vec<String>]
pub fn categories(&self) -> &[Vec<String>]
Return the ordered category list for each column.
categories()[j][i] is the category that maps to integer i in column j.
Sourcepub fn n_features(&self) -> usize
pub fn n_features(&self) -> usize
Return the number of input columns (features).
Trait Implementations§
Source§impl Clone for FittedOrdinalEncoder
impl Clone for FittedOrdinalEncoder
Source§fn clone(&self) -> FittedOrdinalEncoder
fn clone(&self) -> FittedOrdinalEncoder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FittedOrdinalEncoder
impl Debug for FittedOrdinalEncoder
Source§impl Transform<ArrayBase<OwnedRepr<String>, Dim<[usize; 2]>>> for FittedOrdinalEncoder
impl Transform<ArrayBase<OwnedRepr<String>, Dim<[usize; 2]>>> for FittedOrdinalEncoder
Source§fn transform(&self, x: &Array2<String>) -> Result<Array2<usize>, FerroError>
fn transform(&self, x: &Array2<String>) -> Result<Array2<usize>, FerroError>
Transform string categories to integer indices.
§Errors
Returns FerroError::ShapeMismatch if the number of columns does not
match the number of features seen during fitting.
Returns FerroError::InvalidParameter if any category was not seen
during fitting.
Source§type Error = FerroError
type Error = FerroError
The error type returned by
transform.Auto Trait Implementations§
impl Freeze for FittedOrdinalEncoder
impl RefUnwindSafe for FittedOrdinalEncoder
impl Send for FittedOrdinalEncoder
impl Sync for FittedOrdinalEncoder
impl Unpin for FittedOrdinalEncoder
impl UnsafeUnpin for FittedOrdinalEncoder
impl UnwindSafe for FittedOrdinalEncoder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more