est_adult_vols: Estimate Adult Fluid Volumes

Description Usage Arguments Details Author(s) Examples

Description

Computes estimated total body water, extracellular and intracellular fluid volumes for adults.

Usage

1
est_adult_vols(..., wt.kg, wt.lb, is.female, return.df)

Arguments

...

Ignored. This forces all parameters to be named, which is safer.

wt.kg

Numeric. Weight in kilograms.

wt.lb

Numeric. Weight in pounds.

is.female

Logical. TRUE for females, FALSE for males.

return.df

Logical. TRUE to return data.frame, FALSE to return list.

Details

All arguments can be vectors. By default, a list is returned, though a data.frame may be requested instead.

The formula used is simple, and derived from human physiology references:

Total body water (tbw) = 0.5 * wt.kg (females), 0.6 * wt.kg (males) Extracellular (ECC) volume (litres) = tbw * (1/3) Intracellular (ICF) volume (litres) = tbw * (2/3) Interstitial (ISF) volume (litres) = tbw * (3/4) Plasma volume (litres) = tbw * (1/4)

Author(s)

Ryan Kyle, ryan.kyle@mail.mcgill.ca

Examples

1
2
3
4
5
# For a male weighing 65kg, estimated total body water is 39L, ECC volume is 13L
est_adult_vols(wt.kg=65, is.female=FALSE)

# For a female weighing 50kg, estimated total body water is 25L, ECC volume is 8.33L
est_adult_vols(wt.kg=50, is.female=TRUE)

rpkyle/cscmisc documentation built on May 13, 2019, 12:06 p.m.