wip(growth): add score module
Some checks failed
continuous-integration/drone/pr Build is failing

This module is responsible for calculate the z score/centile for each
measurement.
This commit is contained in:
João Paulo Dubas 2024-06-10 12:15:16 +00:00
parent b415b38184
commit 04fff60541
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA
8 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.ArmCircumference do
@moduledoc """
Calculate z-score for arm circumference for age.
"""
end

5
lib/growth/score/bmi.ex Normal file
View File

@ -0,0 +1,5 @@
defmodule Growth.Score.BMI do
@moduledoc """
Calculate z-score for body mass index for age.
"""
end

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.HeadCircumference do
@moduledoc """
Calculate z-score for head circumference for age.
"""
end

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.Height do
@moduledoc """
Calculate z-score for height for age.
"""
end

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.SubscapularSkinfold do
@moduledoc """
Calculate z-score for subscapular skinfold for age.
"""
end

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.TricepsSkinfold do
@moduledoc """
Calculate z-score for triceps skinfold for age.
"""
end

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.Weight do
@moduledoc """
Calculate z-score for weight for age.
"""
end

View File

@ -0,0 +1,5 @@
defmodule Growth.Score.WeightForHeight do
@moduledoc """
Calculate z-score for weight for height.
"""
end