pub struct MLE<'a, D> { /* private fields */ }Expand description
A struct representing a maximum likelihood estimator.
Implementations§
Trait Implementations§
Source§impl CIMEstimator<CatCIM> for MLE<'_, CatWtdTrjs>
impl CIMEstimator<CatCIM> for MLE<'_, CatWtdTrjs>
Source§impl CPDEstimator<CatCPD> for MLE<'_, CatWtdTable>
impl CPDEstimator<CatCPD> for MLE<'_, CatWtdTable>
Source§impl CPDEstimator<GaussCPD> for MLE<'_, GaussTable>
impl CPDEstimator<GaussCPD> for MLE<'_, GaussTable>
Source§impl CPDEstimator<GaussCPD> for MLE<'_, GaussWtdTable>
impl CPDEstimator<GaussCPD> for MLE<'_, GaussWtdTable>
Source§impl<D> Labelled for MLE<'_, D>where
D: Labelled,
impl<D> Labelled for MLE<'_, D>where
D: Labelled,
Source§fn label_to_index(&self, x: &str) -> usize
fn label_to_index(&self, x: &str) -> usize
Return the variable index for a given label. Read more
Source§fn index_to_label(&self, x: usize) -> &str
fn index_to_label(&self, x: usize) -> &str
Return the label for a given variable index. Read more
Source§fn index_to(&self, x: usize, other: &Labels) -> usize
fn index_to(&self, x: usize, other: &Labels) -> usize
Maps an index from this model to another model with the same label. Read more
Source§fn indices_to(&self, x: &Set<usize>, other: &Labels) -> Set<usize>
fn indices_to(&self, x: &Set<usize>, other: &Labels) -> Set<usize>
Maps a set of indices from this model to another model with the same labels. Read more
Source§impl ParCIMEstimator<CatCIM> for MLE<'_, CatWtdTrjs>
impl ParCIMEstimator<CatCIM> for MLE<'_, CatWtdTrjs>
Source§impl ParCPDEstimator<CatCPD> for MLE<'_, CatWtdTable>
impl ParCPDEstimator<CatCPD> for MLE<'_, CatWtdTable>
Source§impl ParCPDEstimator<GaussCPD> for MLE<'_, GaussTable>
impl ParCPDEstimator<GaussCPD> for MLE<'_, GaussTable>
Source§impl ParCPDEstimator<GaussCPD> for MLE<'_, GaussWtdTable>
impl ParCPDEstimator<GaussCPD> for MLE<'_, GaussWtdTable>
impl<'a, D: Copy> Copy for MLE<'a, D>
Auto Trait Implementations§
impl<'a, D> Freeze for MLE<'a, D>
impl<'a, D> RefUnwindSafe for MLE<'a, D>where
D: RefUnwindSafe,
impl<'a, D> Send for MLE<'a, D>where
D: Sync,
impl<'a, D> Sync for MLE<'a, D>where
D: Sync,
impl<'a, D> Unpin for MLE<'a, D>
impl<'a, D> UnwindSafe for MLE<'a, D>where
D: RefUnwindSafe,
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> 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