CompositeMeasureScoring

public enum CompositeMeasureScoring: String

The composite scoring method of the measure

URL: http://hl7.org/fhir/composite-measure-scoring ValueSet: http://hl7.org/fhir/ValueSet/composite-measure-scoring

  • Opportunity scoring combines the scores from component measures by combining the numerators and denominators for each component

    Declaration

    Swift

    case opportunity = "opportunity"
  • All-or-nothing scoring includes an individual in the numerator of the composite measure if they are in the numerators of all of the component measures in which they are in the denominator

    Declaration

    Swift

    case allOrNothing = "all-or-nothing"
  • Linear scoring gives an individual a score based on the number of numerators in which they appear

    Declaration

    Swift

    case linear = "linear"
  • Weighted scoring gives an individual a score based on a weighted factor for each component numerator in which they appear

    Declaration

    Swift

    case weighted = "weighted"