# NOT RUN {
## convert girls' heights data to UK 90 z-scores
data(heights)
data(uk90)
with(heights, LMS2z(age, height, sex = 2, measure = 'ht', ref = 'uk90'))
## construct table of boys weight centiles by age for WHO standard
data(who06)
zs <- -4:4*2/3 # z-scores for centiles
ages <- 0:12/4 # 3-month ages
v <- vapply(as.list(zs), function(z)
LMS2z(ages, z, sex = 1, measure = wt, ref = who06, toz = FALSE),
rep(0, length(ages)))
dimnames(v) <- list(ages, z2cent(zs))
round(v, 2)
# }
Run the code above in your browser using DataLab