Click here to Skip to main content
15,860,861 members
Articles / Desktop Programming / Windows Forms
Article

Children's Growth Percentile

Rate me:
Please Sign up or sign in to vote.
2.69/5 (5 votes)
27 Oct 2008CPOL2 min read 30.9K   1.8K   7   5
An application that presents the growth of a child in comparison with others his age.

Introduction

The following application helps a pediatrician or an anxious parent compare their child's development according to NCHS (National Center for Health Statistics). The application uses their data collections and formulas to present the percentages in different areas.

Background

When a child arrives to a pediatrician, some of the basic criteria that are checked are the child's growth curves\charts. Currently, this is done by physicians manually, using hard copied growth charts.

An example of such growth charts, data used to create them, and how to calculate a child's growth percentile can be found here.

All this application does is request the child's data from the parent\pediatrician and insert it into a formula that calculates the child's progress in comparison with others of his\her age. This is done using the formulas created by the NCHS and a simple Z Table for calculating the final percentage.

In this example, the child's BMI is larger than 93.94% of the children his age.

I originally wrote the code for Google's android competition, so the way data is stored is kind of backwards (hard coded).

Using the Code

Each of the data sets used in the formula is held in classes in arrays of doubles. Every four values is a separate limit.

A child has to be between the two limits, and then you have found the values that need to be used for him to calculate his percentiles (the lower limit). If the child's value is larger than the highest limit, then he is 100% in that area (over developed). If the child's value is smaller than the lowest limit, then the child is 0% in that area (under-developed).

Those values that start with 2.0 represent values used for females. Those values that start with 1.0 represent values used for males.

Points of Interest

This is the first project I have done that allowed me to integrate medicine and programming together. As time passes and I continue with my medical studies, I see more and more opportunities to use the two studies together. I hope that we can take old school doctors and make them a bit more hi-techie...

I had a chance to sharpen my statistical skills and actually use an Z-Table for the first time in my life (not including University).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
PC-Kitchen.
Started programming in the army at the age of 18. Currently starting my 3rd year of medical school hoping one day to mix up both of the careers.
5+ years programming c,c++,c#. Intimate knowledge of windows api.

Comments and Discussions

 
QuestionWhere did you obtain the tables? Pin
MedXLnce8-Apr-11 7:21
MedXLnce8-Apr-11 7:21 
QuestionCode in Visual Basic Pin
dfedosoff24-Aug-09 7:42
dfedosoff24-Aug-09 7:42 
GeneralAndroid Pin
softplanner27-Oct-08 9:31
softplanner27-Oct-08 9:31 
GeneralRe: Android Pin
MedicinalProgramming27-Oct-08 10:33
MedicinalProgramming27-Oct-08 10:33 
GeneralRe: Android Pin
lets_me_try12-Aug-14 20:01
lets_me_try12-Aug-14 20:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.