アニオンギャップ

アニオンギャップのテンプレート。血清電解質の構成をプロット。

アニオンギャップAG代謝性アシドーシス
アニオンギャップ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Component", limits = c(0, 4)) +
  scale_y_continuous(name = "mEq/L", limits = c(0, 150)) +
  labs(title = "Anion Gap") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))