2024-06-10 12:15:16 +00:00
|
|
|
defmodule Growth.Score.Weight do
|
|
|
|
@moduledoc """
|
|
|
|
Calculate z-score for weight for age.
|
|
|
|
"""
|
2024-06-11 11:41:31 +00:00
|
|
|
|
|
|
|
@behaviour Growth.Score.Scorer
|
|
|
|
|
|
|
|
alias Growth.Score.Scorer
|
|
|
|
|
|
|
|
@impl Scorer
|
|
|
|
@spec measure_name() :: atom()
|
|
|
|
@doc """
|
|
|
|
Name of the measurement used in weight indicator.
|
|
|
|
"""
|
|
|
|
def measure_name do
|
|
|
|
:weight
|
|
|
|
end
|
2024-06-10 12:15:16 +00:00
|
|
|
end
|