pub enum CovStruct {
Independence,
Exchangeable,
}Expand description
The within-cluster working correlation structure.
Variants§
Independence
Observations within a cluster are treated as uncorrelated (the working correlation is the identity). GEE then reduces to a GLM for the point estimates, but inference still uses the cluster-robust sandwich.
Exchangeable
A single common correlation ρ between every pair of observations in a
cluster (compound symmetry).
Trait Implementations§
impl Copy for CovStruct
impl StructuralPartialEq for CovStruct
Auto Trait Implementations§
impl Freeze for CovStruct
impl RefUnwindSafe for CovStruct
impl Send for CovStruct
impl Sync for CovStruct
impl Unpin for CovStruct
impl UnsafeUnpin for CovStruct
impl UnwindSafe for CovStruct
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