Learn R Programming

clinPK (version 0.13.0)

calc_dosing_weight: Calculate commonly used "dosing weight"

Description

Dosing weight is determined based on total (TBW), ideal (IBW), or adjusted (ABW) body weight in kg.

Usage

calc_dosing_weight(weight, height, age, sex, verbose = TRUE, ...)

Value

Returns a list of the following elements:

value

Dosing weight, in units of kg

unit

Units of dosing weight (kg)

type

Type of dosing weight selected, e.g., total body weight, ideal body weight.

Arguments

weight

weight

height

height

age

age

sex

sex

verbose

verbosity (`TRUE` or `FALSE`)

...

pased to `calc_abw()` function

Details

This is derived using following: - In principle, use IBW - If total body weight (TBW) > 1.2*IBW, then use ABW - If TBW < IBW, use TBW

Examples

Run this code
calc_dosing_weight(weight = 50, height = 170, sex = "female", age = 50)

Run the code above in your browser using DataLab