├── .gitignore ├── AUTHORS ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README ├── README.md ├── TODO ├── pygrowup ├── __init__.py ├── exceptions.py ├── helpers.py ├── pygrowup.py ├── tables │ ├── bmifa_boys_0_13_zscores.json │ ├── bmifa_boys_0_2_zscores.json │ ├── bmifa_boys_2_20_zscores.cdc.json │ ├── bmifa_boys_2_5_zscores.json │ ├── bmifa_girls_0_13_zscores.json │ ├── bmifa_girls_0_2_zscores.json │ ├── bmifa_girls_2_20_zscores.cdc.json │ ├── bmifa_girls_2_5_zscores.json │ ├── hcfa_boys_0_13_zscores.json │ ├── hcfa_boys_0_5_zscores.json │ ├── hcfa_girls_0_13_zscores.json │ ├── hcfa_girls_0_5_zscores.json │ ├── lhfa_boys_0_13_zscores.json │ ├── lhfa_boys_0_2_zscores.json │ ├── lhfa_boys_0_5_zscores.json │ ├── lhfa_boys_2_20_zscores.cdc.json │ ├── lhfa_boys_2_5_zscores.json │ ├── lhfa_girls_0_13_zscores.json │ ├── lhfa_girls_0_2_zscores.json │ ├── lhfa_girls_0_5_zscores.json │ ├── lhfa_girls_2_20_zscores.cdc.json │ ├── lhfa_girls_2_5_zscores.json │ ├── source │ │ ├── cdc │ │ │ ├── bmiage.csv │ │ │ ├── statage.csv │ │ │ ├── wtage.csv │ │ │ ├── zbmiage.csv │ │ │ ├── zstatage.csv │ │ │ └── zwtage.csv │ │ └── who │ │ │ └── zhcage.csv │ ├── wfa_boys_0_13_zscores.json │ ├── wfa_boys_0_5_zscores.json │ ├── wfa_boys_2_20_zscores.cdc.json │ ├── wfa_girls_0_13_zscores.json │ ├── wfa_girls_0_5_zscores.json │ ├── wfa_girls_2_20_zscores.cdc.json │ ├── wfh_boys_2_5_zscores.json │ ├── wfh_girls_2_5_zscores.json │ ├── wfl_boys_0_2_zscores.json │ └── wfl_girls_0_2_zscores.json ├── testdata │ ├── survey_z_rc.csv │ └── survey_z_st.csv └── tests.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/TODO -------------------------------------------------------------------------------- /pygrowup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/__init__.py -------------------------------------------------------------------------------- /pygrowup/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/exceptions.py -------------------------------------------------------------------------------- /pygrowup/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/helpers.py -------------------------------------------------------------------------------- /pygrowup/pygrowup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/pygrowup.py -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_boys_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_boys_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_boys_0_2_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_boys_0_2_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_boys_2_20_zscores.cdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_boys_2_20_zscores.cdc.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_boys_2_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_boys_2_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_girls_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_girls_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_girls_0_2_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_girls_0_2_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_girls_2_20_zscores.cdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_girls_2_20_zscores.cdc.json -------------------------------------------------------------------------------- /pygrowup/tables/bmifa_girls_2_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/bmifa_girls_2_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/hcfa_boys_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/hcfa_boys_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/hcfa_boys_0_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/hcfa_boys_0_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/hcfa_girls_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/hcfa_girls_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/hcfa_girls_0_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/hcfa_girls_0_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_boys_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_boys_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_boys_0_2_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_boys_0_2_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_boys_0_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_boys_0_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_boys_2_20_zscores.cdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_boys_2_20_zscores.cdc.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_boys_2_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_boys_2_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_girls_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_girls_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_girls_0_2_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_girls_0_2_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_girls_0_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_girls_0_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_girls_2_20_zscores.cdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_girls_2_20_zscores.cdc.json -------------------------------------------------------------------------------- /pygrowup/tables/lhfa_girls_2_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/lhfa_girls_2_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/source/cdc/bmiage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/cdc/bmiage.csv -------------------------------------------------------------------------------- /pygrowup/tables/source/cdc/statage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/cdc/statage.csv -------------------------------------------------------------------------------- /pygrowup/tables/source/cdc/wtage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/cdc/wtage.csv -------------------------------------------------------------------------------- /pygrowup/tables/source/cdc/zbmiage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/cdc/zbmiage.csv -------------------------------------------------------------------------------- /pygrowup/tables/source/cdc/zstatage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/cdc/zstatage.csv -------------------------------------------------------------------------------- /pygrowup/tables/source/cdc/zwtage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/cdc/zwtage.csv -------------------------------------------------------------------------------- /pygrowup/tables/source/who/zhcage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/source/who/zhcage.csv -------------------------------------------------------------------------------- /pygrowup/tables/wfa_boys_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfa_boys_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfa_boys_0_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfa_boys_0_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfa_boys_2_20_zscores.cdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfa_boys_2_20_zscores.cdc.json -------------------------------------------------------------------------------- /pygrowup/tables/wfa_girls_0_13_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfa_girls_0_13_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfa_girls_0_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfa_girls_0_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfa_girls_2_20_zscores.cdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfa_girls_2_20_zscores.cdc.json -------------------------------------------------------------------------------- /pygrowup/tables/wfh_boys_2_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfh_boys_2_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfh_girls_2_5_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfh_girls_2_5_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfl_boys_0_2_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfl_boys_0_2_zscores.json -------------------------------------------------------------------------------- /pygrowup/tables/wfl_girls_0_2_zscores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tables/wfl_girls_0_2_zscores.json -------------------------------------------------------------------------------- /pygrowup/testdata/survey_z_rc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/testdata/survey_z_rc.csv -------------------------------------------------------------------------------- /pygrowup/testdata/survey_z_st.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/testdata/survey_z_st.csv -------------------------------------------------------------------------------- /pygrowup/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/pygrowup/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ewheeler/pygrowup/HEAD/setup.py --------------------------------------------------------------------------------