SOFAスコア推移

SOFAスコア推移テンプレート。ICUでの臓器不全の経時的評価に使用。

SOFAICU臓器不全重症度
SOFAスコア推移

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "ICU Day", limits = c(0, 14)) +
  scale_y_continuous(name = "SOFA Score", limits = c(0, 24)) +
  labs(title = "SOFA Score Trend") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))