Modify score calculations. Ignore any survey item scores of 0.

Never include zero when performing calculations for scores.
This commit is contained in:
Nelson Jovel 2022-04-19 12:41:01 -07:00
parent 0e85370b90
commit c475744939
5 changed files with 99 additions and 32 deletions

View file

@ -0,0 +1,19 @@
# Decision record 9
# Modify score calculations so that a survey item score of 0 is never included in the average
## Status
Completed
## Context
Some scores were artificially low because survey items that lacked survey item responses returned a score of 0. 0 did not represent the average likert_scores of survey item responses, only the lack of responses. 0 was incorrectly being averaged with other survey items and artificially dragging down the score.
## Decision
Survey item scores of 0 should be ignored and filtered out when performing score calculations.
## Consequences
Some average scores have increased.