2024-06-10 12:15:16 +00:00
|
|
|
defmodule Growth.Score.SubscapularSkinfold do
|
|
|
|
@moduledoc """
|
|
|
|
Calculate z-score for subscapular skinfold 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 subscapular skinfold indicator.
|
|
|
|
"""
|
|
|
|
def measure_name do
|
2024-06-11 12:01:25 +00:00
|
|
|
:subscapular_skinfold
|
2024-06-11 11:41:31 +00:00
|
|
|
end
|
2024-06-10 12:15:16 +00:00
|
|
|
end
|