H2 Competency Classes
Competency Classes are used in H2 to classify Assessments based on the calculated Critical and Non-Critical Scores.
Please Note:
Competency Classes must be enabled in order to access this H2 feature. If the usage of Competency Classess is disabled, the Assessment will be classified using the Quality of Care ABC scoring.
The PCA is required to Enable/Disable the usage of Competency Classess in H2 Programs.
The Program Rules and Program Indicators in H2 Programs classify Assessments by following a set of conditions that involve the Critical and Non-Critical Scores. Based on those conditions, the possible competency values are: Competent, Competent, but Needs Improvement and Not Competent.
Competent
An Assessment is classified as Competent if, and only if all the Critical Questions are answered correctly (meaning that the Assessment has a Critical Score of 100%) and the Non-Critical Score is above 89.9%.
The expression included in the DHIS2 Program Rules for this classification is the following:
#{_criticalNewest} == 100 && #{_NoncriticalNewest} >= 89.9
Where _criticalNewest and _NoncriticalNewest refer to the Critical and Non-Critical Scores of an Assessment respectively.
The Program Rule expression in DHIS2 looks like this:
Competent, but Needs Improvement
An Assessment is classified as Competent, but Needs Improvement if, and only if all the Critical Questions are answered correctly (meaning that the Assessment has a Critical Score of 100%) and the Non-Critical Score is between 79.9% and 89.9%.
The expression included in the DHIS2 Program Rules for this classification is the following:
#{_criticalNewest} == 100 && (#{_NoncriticalNewest} < 89.9 && #{_NoncriticalNewest} >= 79.9)
The Program Rule expression in DHIS2 looks like this:
Not Competent
An Assessment is classified as Not Competent if any of the following conditions is met:
a) Any of the Critical Questions is answered incorrectly (meaning that the Assessment has a Critical Score of less than 100%).
b) The Non-Critical Score is between 0% and 79.9%.
The expression included in the DHIS2 Program Rules for this classification is the following:
#{_criticalNewest} < 100 || (#{_NoncriticalNewest} < 79.9 && #{_NoncriticalNewest} >= 0)
The Program Rule expression in DHIS2 looks like this:
Where to check Competency Classes
While in the Assessment Stage of any H2 Program, the supervisor can check the values of the Critical Score, Non-Critical Score and Competency Class (if enabled). Those values are displayed in the Critical Steps Calculations Section of every Assessment.
LINK TO USER MANUAL
LINK TO CRITICAL / NON CRITICAL CALCULATION