Group | Scoring | Population Criteria | Expression |
group-1 |
Group scoring:
continuous-variable
|
|
|
|
// Number of patients
define "Patients":
[Patient]
|
|
|
|
// Number of patients
define "Patients":
[Patient]
|
|
|
|
|
group-2 |
Group scoring:
continuous-variable
|
|
|
|
// Number of practitioners
define "Practitioners":
[PractitionerRole]
|
|
|
|
// Number of practitioners
define "Practitioners":
[PractitionerRole]
|
|
|
|
|
group-3 |
Group scoring:
continuous-variable
|
|
|
|
// Number of beds
define "Beds":
[Device: "Bed Device Types"]
|
|
|
|
// Number of beds
define "Beds":
[Device: "Bed Device Types"]
|
|
|
|
|
group-4 |
Group scoring:
continuous-variable
|
|
|
|
|
|
|
|
|
|
|
|
|
group-5 |
Group scoring:
proportion
|
|
|
|
// Percentage of patients who received screening
define "Initial Population":
"Patients"
|
|
|
|
define "Denominator":
"Patients" P
where P.gender = 'female'
|
|
|
|
define "Numerator":
"Patients" P
with "Screening Procedures" SP
such that P.id = Last(Split(SP.subject.reference, '/'))
|
group-6 |
Group scoring:
composite
|
Library Name | Name |
MultiRateExample-FHIR |
Practitioners |
|
// Number of practitioners
define "Practitioners":
[PractitionerRole]
|
Library Name | Name |
MultiRateExample-FHIR |
Patients |
|
// Number of patients
define "Patients":
[Patient]
|
Library Name | Name |
MultiRateExample-FHIR |
Screening Procedures |
|
// Number of screening procedures
define "Screening Procedures":
[Procedure: "Screening Procedure Types"]
|
Library Name | Name |
MultiRateExample-FHIR |
Numerator |
|
define "Numerator":
"Patients" P
with "Screening Procedures" SP
such that P.id = Last(Split(SP.subject.reference, '/'))
|
Library Name | Name |
MultiRateExample-FHIR |
Denominator |
|
define "Denominator":
"Patients" P
where P.gender = 'female'
|
Library Name | Name |
MultiRateExample-FHIR |
Initial Population |
|
// Percentage of patients who received screening
define "Initial Population":
"Patients"
|
Library Name | Name |
MultiRateExample-FHIR |
Beds |
|
// Number of beds
define "Beds":
[Device: "Bed Device Types"]
|