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(*args, &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
43 44 45 46 47 48 49 50 51 |
# File 'lib/quby/answers/services/score_calculator.rb', line 43 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(*args, &block) ⇒ Object
Evaluates block within the context of a new calculator instance. All instance methods are accessible.
24 25 26 27 28 29 |
# File 'lib/quby/answers/services/score_calculator.rb', line 24 def self.calculate(*args, &block) instance = new(*args) 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.
198 199 200 |
# File 'lib/quby/answers/services/score_calculator.rb', line 198 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.
243 244 245 246 247 248 249 250 251 252 253 |
# File 'lib/quby/answers/services/score_calculator.rb', line 243 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 fail MissingAnswerValues, 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.
205 206 207 |
# File 'lib/quby/answers/services/score_calculator.rb', line 205 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
193 194 195 |
# File 'lib/quby/answers/services/score_calculator.rb', line 193 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.
133 134 135 136 137 |
# File 'lib/quby/answers/services/score_calculator.rb', line 133 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
144 145 146 |
# File 'lib/quby/answers/services/score_calculator.rb', line 144 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
153 154 155 |
# File 'lib/quby/answers/services/score_calculator.rb', line 153 def mean_ignoring_nils_80_pct(values) mean(values, ignoring: [nil], minimum_present: values.length * 0.8) end |
#opencpu(package, function, parameters = {}) ⇒ Object
228 229 230 231 |
# File 'lib/quby/answers/services/score_calculator.rb', line 228 def opencpu(package, function, parameters = {}) client = ::OpenCPU.client client.execute(package, function, parameters) end |
#referenced_values ⇒ Object
224 225 226 |
# File 'lib/quby/answers/services/score_calculator.rb', line 224 def referenced_values @values.keys.select { |key| @referenced_values.include? key } end |
#respondent_type ⇒ Object
Public: Returns the type of the respondent
210 211 212 |
# File 'lib/quby/answers/services/score_calculator.rb', line 210 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.
217 218 219 220 221 222 |
# File 'lib/quby/answers/services/score_calculator.rb', line 217 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
184 185 186 |
# File 'lib/quby/answers/services/score_calculator.rb', line 184 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
163 164 165 166 167 168 |
# File 'lib/quby/answers/services/score_calculator.rb', line 163 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
175 176 177 |
# File 'lib/quby/answers/services/score_calculator.rb', line 175 def sum_extrapolate_80_pct(values) sum_extrapolate(values, values.length * 0.8) end |
#table_lookup(table_key, parameters) ⇒ Object
233 234 235 |
# File 'lib/quby/answers/services/score_calculator.rb', line 233 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.
99 100 101 |
# File 'lib/quby/answers/services/score_calculator.rb', line 99 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.
64 65 66 67 68 |
# File 'lib/quby/answers/services/score_calculator.rb', line 64 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.
112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/quby/answers/services/score_calculator.rb', line 112 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.
82 83 84 85 86 87 88 89 90 |
# File 'lib/quby/answers/services/score_calculator.rb', line 82 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 |