Description Usage Arguments Details Author(s) Examples
View source: R/derive_advs_params.R
Computes mean arterial pressure (MAP) based on diastolic and systolic blood pressure. Optionally heart rate can be used as well.
1 | compute_map(diabp, sysbp, hr = NULL)
|
diabp |
Diastolic blood pressure A numeric vector is expected. |
sysbp |
Systolic blood pressure A numeric vector is expected. |
hr |
Heart rate A numeric vector or |
(2DIABP + SYSBP) / 3
if it is based on diastolic and systolic blood pressure and
DIABP + 0.01 exp(4.14 - 40.74 / HR) (SYSBP - DIABP)
if it is based on diastolic, systolic blood pressure, and heart rate.
Stefan Bundfuss
1 2 3 4 5 | # Compute MAP based on diastolic and systolic blood pressure
compute_map(diabp = 51, sysbp = 121)
# Compute MAP based on diastolic and systolic blood pressure and heart rate
compute_map(diabp = 51, sysbp = 121, hr = 59)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.