pub struct CatCIMS { /* private fields */ }Expand description
Sample (sufficient) statistics for a categorical CIM.
Implementations§
Source§impl CatCIMS
impl CatCIMS
Sourcepub const fn sample_conditional_counts(&self) -> &Array3<f64>
pub const fn sample_conditional_counts(&self) -> &Array3<f64>
Returns the sample conditional counts |Z| x |X| x |X|.
§Returns
The sample conditional counts |Z| x |X| x |X|.
Sourcepub const fn sample_conditional_times(&self) -> &Array2<f64>
pub const fn sample_conditional_times(&self) -> &Array2<f64>
Sourcepub const fn sample_size(&self) -> f64
pub const fn sample_size(&self) -> f64
Trait Implementations§
Source§impl AddAssign for CatCIMS
impl AddAssign for CatCIMS
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+= operation. Read moreSource§impl CSSEstimator<CatCIMS> for SSE<'_, CatWtdTrjs>
impl CSSEstimator<CatCIMS> for SSE<'_, CatWtdTrjs>
Source§impl<'de> Deserialize<'de> for CatCIMS
impl<'de> Deserialize<'de> for CatCIMS
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl ParCSSEstimator<CatCIMS> for SSE<'_, CatWtdTrjs>
impl ParCSSEstimator<CatCIMS> for SSE<'_, CatWtdTrjs>
Auto Trait Implementations§
impl Freeze for CatCIMS
impl RefUnwindSafe for CatCIMS
impl Send for CatCIMS
impl Sync for CatCIMS
impl Unpin for CatCIMS
impl UnwindSafe for CatCIMS
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