臨床ヘンダーソン-ハッセルバルヒ図

臨床ヘンダーソン-ハッセルバルヒ図テンプレート。臨床検査での酸塩基理解。

henderson-hasselbalchpHpKa臨床検査
臨床ヘンダーソン-ハッセルバルヒ図

R Code (ggplot2)

library(ggplot2)

# ---- Clinical Henderson-Hasselbalch ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "pH", limits = c(0, 14)) +
  scale_y_continuous(name = "[A-]/[HA]", limits = c(0, 100)) +
  labs(title = "Clinical Henderson-Hasselbalch") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))