pub enum FleissMethod {
Fleiss,
Randolph,
}Expand description
Chance-correction convention used by fleiss_kappa.
Variants§
Fleiss
Fleiss’ kappa: the chance outcome uses the sample marginal of categories.
Randolph
Randolph’s (uniform) kappa: the chance outcome assumes a uniform distribution over categories.
Trait Implementations§
Source§impl Clone for FleissMethod
impl Clone for FleissMethod
Source§fn clone(&self) -> FleissMethod
fn clone(&self) -> FleissMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FleissMethod
Source§impl Debug for FleissMethod
impl Debug for FleissMethod
impl Eq for FleissMethod
Source§impl PartialEq for FleissMethod
impl PartialEq for FleissMethod
impl StructuralPartialEq for FleissMethod
Auto Trait Implementations§
impl Freeze for FleissMethod
impl RefUnwindSafe for FleissMethod
impl Send for FleissMethod
impl Sync for FleissMethod
impl Unpin for FleissMethod
impl UnsafeUnpin for FleissMethod
impl UnwindSafe for FleissMethod
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