Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

henderson_hasselbalch

pH by Henderson Hasselbalch equation


Description

Calculate the pH based on bicarbonate and partial pressure of CO2

Usage

henderson_hasselbalch(bicarbonate, pp_co2)

Arguments

bicarbonate

mmol/L

pp_co2

partial pressure of carbon dioxide in mmHg

Examples

bicarbonate <- seq(10, 50, 5)
 pp_co2 <- seq(20, 70, 10)
 bc <- rep(bicarbonate, length(pp_co2))
 pp <- rep(pp_co2, each = length(bicarbonate))
 acidbase <- matrix(henderson_hasselbalch(bc, pp), nrow = 9, ncol = 6)
 rownames(acidbase) <- paste("bicarb", bicarbonate)
 colnames(acidbase) <- paste("PaCO2", pp_co2)
 acidbase

physiology

Calculate physiologic characteristics of awake and anesthetized adults, children and infants

v1.2.1
GPL-3
Authors
Jack O. Wasey [aut, cre, cph] (<https://orcid.org/0000-0003-3738-4637>), Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>)
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.