calc_lbw | R Documentation |
Get an estimate of lean body weight (LBW, in kg) based on weight, height, and sex.
calc_lbw(
weight = NULL,
bmi = NULL,
sex = NULL,
height = NULL,
method = "green",
digits = 1
)
weight |
total body weight in kg |
bmi |
bmi |
sex |
sex, either |
height |
height in cm |
method |
estimation method, either |
digits |
round to number of digits |
Note: technically not the same as fat-free mass, although difference is small.
References:
green
: Green and Duffull. Clin Pharmacol Ther 2002;
james
: Absalom AR et al. Br J Anaesth 2009; 103:26-37.
James W. Research on obesity. London: Her Majesty's Stationary Office, 1976.
hume
: Hume R et al. J Clin Pathol. 1966 Jul; 19(4):389-91.
boer
: Boer P et al. Am J Physiol 1984; 247: F632-5
Returns a list of the following elements:
value |
Lean Body Weight (LBW) in units of kg |
unit |
Unit describing LBW, (kg) |
calc_lbw(weight = 80, height = 170, sex = "male")
calc_lbw(weight = 80, height = 170, sex = "male", method = "james")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.