血液ガス解釈マップ

血液ガス解釈マップテンプレート。酸塩基障害の分類・鑑別に使用。

血液ガスABGpH代謝性
血液ガス解釈マップ

R Code (ggplot2)

library(ggplot2)

# ---- ABG Interpretation Map ----
# あなたのデータを入力してください
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(7, 7.7)) +
  scale_y_continuous(name = "PaCO2 (mmHg)", limits = c(10, 80)) +
  labs(title = "ABG Interpretation Map") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))