head_circumference_for_age | R Documentation |
Head Circumference for age quantile, distribution, and zscore function based on LMS data from the CDC and WHO.
p_head_circumference_for_age(
q,
male,
age,
source = getOption("pedbp_pgs_source", "CDC"),
...
)
q_head_circumference_for_age(
p,
male,
age,
source = getOption("pedbp_pgs_source", "CDC"),
...
)
z_head_circumference_for_age(
q,
male,
age,
source = getOption("pedbp_pgs_source", "CDC"),
...
)
q |
a vector of quantiles |
male |
integer value, 1 = male, 0 = female |
age |
numeric age, in months |
source |
a character string denoting the data source providing the
parameters needed for the estimate. Valid values are "CDC" and "WHO". This
can be set explicitly, or by using the |
... |
pass through |
p |
a vector of probabilities |
p_
method return values from the estimated distribution function.
q_
methods return values from the estimated quantile function.
z_
methods return standard scores.
CDC Recommends using WHO growth charts for infants and children ages 0 to 2 years of age in the U.S. and CDC growth charts to monitor growth for children age 2 years and older in the U.S.
https://www.cdc.gov/growthcharts/percentile_data_files.htm, https://www.who.int/tools/child-growth-standards/standards
Distribution functions:
bmi_for_age
head_circumference_for_age
height_for_age
length_for_age
weight_for_age
weight_for_length
weight_for_height
Plotting functions:
gs_chart
gs_cdf
Vignette:
vignette(topic = "growth-standards", package = "pedbp")
# The median head circumfernce for a two-year-old female:
q_head_circumference_for_age(p = 0.5, male = 0, age = 24, source = "CDC")
# Find the percentile for a 13 month old male with a head circumfernce of 46 cm:
p <- p_head_circumference_for_age(q = 46, male = 1, age = 13, source = "CDC")
p
# the standard score is the quantile from a standard normal
z_head_circumference_for_age(q = 46, male = 1, age = 13, source = "CDC")
qnorm(p)
# WHO not yet implimented
tryCatch(q_head_circumference_for_age(0.5, male = 0, age = 24, source = "WHO"),
error = function(e) e)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.