Class: Quby::Answers::Services::ScoreCalculator
- Inherits:
-
Object
- Object
- Quby::Answers::Services::ScoreCalculator
- Defined in:
- lib/quby/answers/services/score_calculator.rb
Defined Under Namespace
Classes: MissingAnswerValues, UnknownFieldsReferenced
Class Method Summary collapse
-
.calculate(**kwargs, &block) ⇒ Object
Evaluates block within the context of a new calculator instance.
Instance Method Summary collapse
-
#age ⇒ Object
Public: Returns the Integer age of the patient, or nil if it’s not known.
-
#ensure_answer_values_for(*keys, minimum_present: keys.flatten(1).size, missing_values: []) ⇒ Object
Public: Ensure given question_keys have answers.
-
#gender ⇒ Object
Public: Returns the Symbol describing the gender of the patient.
-
#initialize(questionnaire:, values:, timestamp:, patient_attrs: {}, respondent_attrs: {}) ⇒ ScoreCalculator
constructor
Public: Initialize a new ScoreCalculator.
-
#max(*values) ⇒ Object
Public: Max of values.
-
#mean(values, ignoring: [], minimum_present: 1) ⇒ Object
Public: Gives mean of values.
-
#mean_ignoring_nils(values) ⇒ Object
Public: Gives mean of values, ignoring nil values.
-
#mean_ignoring_nils_80_pct(values) ⇒ Object
Public: Gives mean of values, ignoring nil values if >= 80% is filled in.
- #opencpu(package, function, parameters = {}) ⇒ Object
- #referenced_values ⇒ Object
-
#respondent_type ⇒ Object
Public: Returns the type of the respondent.
-
#score(key) ⇒ Object
Public: Runs another score calculation or variable and returns its result.
-
#sum(values) ⇒ Object
Public: Sums values.
-
#sum_extrapolate(values, minimum_present) ⇒ Object
Public: Sums values, extrapolating nils to be valued as the mean of the present values.
-
#sum_extrapolate_80_pct(values) ⇒ Object
Public: Sums values, extrapolating nils to be valued as the mean of the present values.
- #table_lookup(table_key, parameters) ⇒ Object
-
#value(key) ⇒ Object
Public: Get value for given question key.
-
#values(*keys) ⇒ Object
Public: Get values for given question keys.
-
#values_with_nils(*keys) ⇒ Object
Public: Get values for given question keys, or nil if the question is not filled in.
-
#values_without_missings(*keys, minimum_present: 1, missing_values: []) ⇒ Object
Public: Get values for given question keys removing any missing keys.
Constructor Details
#initialize(questionnaire:, values:, timestamp:, patient_attrs: {}, respondent_attrs: {}) ⇒ ScoreCalculator
Public: Initialize a new ScoreCalculator
values - The Hash values describes the keys of questions and the values
of the answer given to that question.
timestamp - The Time to be used to calculate the age of the patient. patient_attrs - A Hash describing extra patient information (default: {})
:birthyear - The Integer birthyear of the patient to be used in
score calculation (optional)
:gender - The Symbol gender of the patient, must be one of:
:male, :female or :unknown (optional)
respondent_attrs - A Hash describing respondent information (default: {})
:respondent_type - The Symbol or String type of respondent
44 45 46 47 48 49 50 51 52 |
# File 'lib/quby/answers/services/score_calculator.rb', line 44 def initialize(questionnaire:, values:, timestamp:, patient_attrs: {}, respondent_attrs: {}) @questionnaire = questionnaire @values = values @timestamp = @patient = Entities::Patient.new(patient_attrs) @respondent = Entities::Respondent.new(respondent_attrs) @score = {} @referenced_values = [] end |
Class Method Details
.calculate(**kwargs, &block) ⇒ Object
Evaluates block within the context of a new calculator instance. All instance methods are accessible.
25 26 27 28 29 30 |
# File 'lib/quby/answers/services/score_calculator.rb', line 25 def self.calculate(**kwargs, &block) instance = new(**kwargs) result = instance.instance_eval(&block) result = result.merge(referenced_values: instance.referenced_values) if result.respond_to?(:merge) result end |
Instance Method Details
#age ⇒ Object
Public: Returns the Integer age of the patient, or nil if it’s not known.
199 200 201 |
# File 'lib/quby/answers/services/score_calculator.rb', line 199 def age @patient.age_at @timestamp end |
#ensure_answer_values_for(*keys, minimum_present: keys.flatten(1).size, missing_values: []) ⇒ Object
Public: Ensure given question_keys have answers. Strings with nothing but whitespace are not considered answered.
*keys - A list of keys to check if an answer is given *minimum_present - defaults to all *missing_values - extra values to consider missing.
244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'lib/quby/answers/services/score_calculator.rb', line 244 def ensure_answer_values_for(*keys, minimum_present: keys.flatten(1).size, missing_values: []) keys = keys.flatten(1).map(&:to_s) # we also consider '' and whitespace to be not filled in, as well as nil values or missing keys unanswered_keys = keys.select { |key| missing_value?(@values[key], missing_values: missing_values) } if unanswered_keys.size > keys.size - minimum_present raise MissingAnswerValues.new \ questionnaire_key: @questionnaire.key, values: @values, missing: unanswered_keys end end |
#gender ⇒ Object
Public: Returns the Symbol describing the gender of the patient.
The symbol :unknown is returned when gender is not known.
206 207 208 |
# File 'lib/quby/answers/services/score_calculator.rb', line 206 def gender @patient.gender end |
#max(*values) ⇒ Object
Public: Max of values
values - an Array or list of Numerics
Returns the highest value of the given values
194 195 196 |
# File 'lib/quby/answers/services/score_calculator.rb', line 194 def max(*values) values.flatten.compact.max end |
#mean(values, ignoring: [], minimum_present: 1) ⇒ Object
Public: Gives mean of values
values - An Array of Numerics ignoring - An array of values to remove before taking the mean. minimum_present - return nil if less values than this are left after filtering
Returns the mean of the given values or nil if minimum_present is not met.
134 135 136 137 138 |
# File 'lib/quby/answers/services/score_calculator.rb', line 134 def mean(values, ignoring: [], minimum_present: 1) compacted_values = values.reject { |v| ignoring.include? v } return nil if compacted_values.blank? || compacted_values.length < minimum_present sum(compacted_values).to_f / compacted_values.length end |
#mean_ignoring_nils(values) ⇒ Object
Public: Gives mean of values, ignoring nil values
values - An Array of Numerics
Returns the mean of the given values
145 146 147 |
# File 'lib/quby/answers/services/score_calculator.rb', line 145 def mean_ignoring_nils(values) mean(values, ignoring: [nil]) end |
#mean_ignoring_nils_80_pct(values) ⇒ Object
Public: Gives mean of values, ignoring nil values if >= 80% is filled in
values - An Array of Numerics
Returns the mean of the given values, or nil if less than 80% is present
154 155 156 |
# File 'lib/quby/answers/services/score_calculator.rb', line 154 def mean_ignoring_nils_80_pct(values) mean(values, ignoring: [nil], minimum_present: values.length * 0.8) end |
#opencpu(package, function, parameters = {}) ⇒ Object
229 230 231 232 |
# File 'lib/quby/answers/services/score_calculator.rb', line 229 def opencpu(package, function, parameters = {}) client = ::OpenCPU.client client.execute(package, function, parameters) end |
#referenced_values ⇒ Object
225 226 227 |
# File 'lib/quby/answers/services/score_calculator.rb', line 225 def referenced_values @values.keys.select { |key| @referenced_values.include? key } end |
#respondent_type ⇒ Object
Public: Returns the type of the respondent
211 212 213 |
# File 'lib/quby/answers/services/score_calculator.rb', line 211 def respondent_type @respondent.type end |
#score(key) ⇒ Object
Public: Runs another score calculation or variable and returns its result
key - The Symbol of another score.
218 219 220 221 222 223 |
# File 'lib/quby/answers/services/score_calculator.rb', line 218 def score(key) fail "Score #{key.inspect} does not exist." unless @questionnaire.score_calculations.key? key calculation = @questionnaire.score_calculations.fetch(key) instance_eval(&calculation.calculation) end |
#sum(values) ⇒ Object
Public: Sums values
values - An Array of Numerics
Returns the sum of the given values
185 186 187 |
# File 'lib/quby/answers/services/score_calculator.rb', line 185 def sum(values) values.reduce(0, &:+) end |
#sum_extrapolate(values, minimum_present) ⇒ Object
Public: Sums values, extrapolating nils to be valued as the mean of the present values
values - An Array of Numerics minimum_answered - The minimum of values needed to be present, returns nil otherwise
Returns the sum of the given values, or nil if minimum_present is not met
164 165 166 167 168 169 |
# File 'lib/quby/answers/services/score_calculator.rb', line 164 def sum_extrapolate(values, minimum_present) return nil if values.reject(&:blank?).length < minimum_present mean = mean_ignoring_nils(values) values = values.map { |value| value ? value : mean } sum(values) end |
#sum_extrapolate_80_pct(values) ⇒ Object
Public: Sums values, extrapolating nils to be valued as the mean of the present values
values - An Array of Numerics
Returns the sum of the given values, or nil if less than 80% is present
176 177 178 |
# File 'lib/quby/answers/services/score_calculator.rb', line 176 def sum_extrapolate_80_pct(values) sum_extrapolate(values, values.length * 0.8) end |
#table_lookup(table_key, parameters) ⇒ Object
234 235 236 |
# File 'lib/quby/answers/services/score_calculator.rb', line 234 def table_lookup(table_key, parameters) @questionnaire.lookup_tables.fetch(table_key).lookup(parameters) end |
#value(key) ⇒ Object
Public: Get value for given question key
key - A key for which to return a value
Returns the value.
Raises MissingAnswerValues if the keys doesn’t have a value.
100 101 102 |
# File 'lib/quby/answers/services/score_calculator.rb', line 100 def value(key) values(key).first end |
#values(*keys) ⇒ Object
Public: Get values for given question keys
*keys - A list or array of keys for which to return values
Returns an Array of values. Values are whatever they may be defined as, usually they are either Integers of Floats, but remember that no such restriction is placed. And for open questions the value will probably be a String. Returns hash of all values if no keys are given.
Raises MissingAnswerValues if one or more keys doesn’t have a value.
65 66 67 68 69 |
# File 'lib/quby/answers/services/score_calculator.rb', line 65 def values(*keys) keys = keys.flatten(1).map(&:to_s) ensure_answer_values_for(keys) values_with_nils(keys) end |
#values_with_nils(*keys) ⇒ Object
Public: Get values for given question keys, or nil if the question is not filled in
*keys - A list of keys for which to return values
Returns an Array of values. Values are whatever they may be defined as, usually they are either Integers of Floats, but remember that no such restriction is placed. And for open questions the value will probably be a String. If the question is not filled in or the question key is unknown, nil will be returned for that question.
113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/quby/answers/services/score_calculator.rb', line 113 def values_with_nils(*keys) keys = keys.flatten(1).map(&:to_s) ensure_defined_question_keys(keys) ensure_no_duplicate_keys(keys) if keys.empty? remember_usage_of_value_keys(@values.keys) @values else remember_usage_of_value_keys(keys) @values.values_at(*keys) end end |
#values_without_missings(*keys, minimum_present: 1, missing_values: []) ⇒ Object
Public: Get values for given question keys removing any missing keys.
*keys - A list or array of keys for which to return values - required. *minimum_present - see Raises. *missing_values - extra values to consider missing.
Returns an Array of values. Values are whatever they may be defined as, usually they are either Integers of Floats, but remember that no such restriction is placed. And for open questions the value will probably be a String.
Raises MissingAnswerValues when less than minimum_present keys have a value.
83 84 85 86 87 88 89 90 91 |
# File 'lib/quby/answers/services/score_calculator.rb', line 83 def values_without_missings(*keys, minimum_present: 1, missing_values: []) keys = keys.flatten(1).map(&:to_s) fail ArgumentError, 'keys empty' unless keys.present? ensure_answer_values_for(keys, minimum_present: minimum_present, missing_values: missing_values) values_with_nils(keys).reject do |v| missing_value?(v, missing_values: missing_values) end end |