血液ガス解釈ヒートマップ

動脈血ガスのパラメータ別変化パターンをヒートマップ表示するテンプレート。

ABG血液ガスヒートマップ解釈
血液ガス解釈ヒートマップ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Parameter", limits = c(0, 4)) +
  scale_y_continuous(name = "Condition", limits = c(0, 4)) +
  labs(title = "ABG Interpretation Heatmap") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))