[WIP] Implement growth assessment using WHO indicators #80

Draft
joao.dubas wants to merge 92 commits from jpd-feat-add-bmi-module-with-live-view into main
49 changed files with 32143 additions and 499 deletions
Showing only changes of commit 04fff60541 - Show all commits

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