pub enum EvidenceVariableHandling {
Continuous,
Dichotomous,
Ordinal,
Polychotomous,
}Expand description
EvidenceVariableHandling. The handling of the variable in statistical analysis for exposures or outcomes (E.g. Dichotomous, Continuous, Descriptive).
FHIR version: 5.0.0.
Variants§
Continuous
continuous
continuous variable. A continuous variable is one for which, within the limits the variable ranges, any value is possible (from STATO http://purl.obolibrary.org/obo/STATO_0000251).
Dichotomous
dichotomous
dichotomous variable. A dichotomous variable is a categorical variable which is defined to have only 2 categories or possible values (from STATO http://purl.obolibrary.org/obo/STATO_0000090).
Ordinal
ordinal
ordinal variable. An ordinal variable is a categorical variable where the discrete possible values are ordered or correspond to an implicit ranking (from STATO http://purl.obolibrary.org/obo/STATO_0000228).
Polychotomous
polychotomous
polychotomous variable. A polychotomous variable is a categorical variable which is defined to have minimally 2 categories or possible values. (from STATO http://purl.obolibrary.org/obo/STATO_0000087). Suggestion to limit code use to situations when neither dichotomous nor ordinal variables apply.
Trait Implementations§
Source§impl AsRef<str> for EvidenceVariableHandling
impl AsRef<str> for EvidenceVariableHandling
Source§impl Clone for EvidenceVariableHandling
impl Clone for EvidenceVariableHandling
Source§fn clone(&self) -> EvidenceVariableHandling
fn clone(&self) -> EvidenceVariableHandling
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for EvidenceVariableHandling
impl Debug for EvidenceVariableHandling
Source§impl<'de> Deserialize<'de> for EvidenceVariableHandling
impl<'de> Deserialize<'de> for EvidenceVariableHandling
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>,
Source§impl Display for EvidenceVariableHandling
impl Display for EvidenceVariableHandling
Source§impl From<EvidenceVariableHandling> for CodeableConcept
impl From<EvidenceVariableHandling> for CodeableConcept
Source§fn from(code: EvidenceVariableHandling) -> Self
fn from(code: EvidenceVariableHandling) -> Self
Source§impl From<EvidenceVariableHandling> for Coding
impl From<EvidenceVariableHandling> for Coding
Source§fn from(code: EvidenceVariableHandling) -> Self
fn from(code: EvidenceVariableHandling) -> Self
Source§impl FromStr for EvidenceVariableHandling
impl FromStr for EvidenceVariableHandling
Source§impl Hash for EvidenceVariableHandling
impl Hash for EvidenceVariableHandling
Source§impl PartialEq for EvidenceVariableHandling
impl PartialEq for EvidenceVariableHandling
Source§fn eq(&self, other: &EvidenceVariableHandling) -> bool
fn eq(&self, other: &EvidenceVariableHandling) -> bool
self and other values to be equal, and is used by ==.