Returns details of follow-up assessments, including:
-
the number of assessments that were not followed up on
-
how long after the initial assessment was the follow up assessment
-
what the followup assessment pain level was
Each of the metrics is reported based on the initial pain level (of none
, moderate
or severe
).
The metrics are calculated when followup
is included in the metric_pool
list for Analytics Endpoint. They are calculated per partition, via an invoked procedure ss_followup_metrics_for_partition
.
Metrics are calculated over assessment_data = assessments which can be filtered by license, user, site, patient, mode, start date and end date as inherited from the endpoint call.
Metric Key |
Definition |
Example |
|
---|---|---|---|
1 |
|
count of Mild Follow-up Fails |
i.e. there were 16 |
2 |
|
count of Moderate Follow-up Fails |
i.e. there were 5 |
3 |
|
count of Severe Follow-up Fails |
i.e. there were 2 severe pain assessments with a failed follow-up status |
4 |
|
An array of counts of Mild Nth-hour Follow-ups for N inclusive between 0 and 23 |
e.g. 10 |
5 |
|
An array of counts of Moderate Nth-hour Follow-ups for N inclusive between 0 and 23 |
e.g. 1 |
6 |
|
An array of counts of Severe Nth-hour Follow-ups for N inclusive between 0 and 23 |
e.g. 2 |
7 |
|
An array of counts of Mild Follow-up Outcomes of pain level |
e.g. 10 |
8 |
|
An array of counts of Moderate Follow-up Outcomes of pain level |
e.g. 1 |
9 |
|
An array of counts of Severe Follow-up Outcomes of pain level |
e.g. 1 |
Note
1. Follow-up terminology is found here Analytics Follow-up and Related Terminology.
{ "mild_followup_fail": 16, "moderate_followup_fail": 5, "severe_followup_fail": 2, "mild_hourly_followup_bins": [2,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1], "moderate_hourly_followup_bins": [3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1], "severe_hourly_followup_bins": [2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0], "initial_mild_followup_pain_levels": [10,4,1,1], "initial_moderate_followup_pain_levels": [0,1,2,1], "initial_severe_followup_pain_levels": [1,0,2,0], }