輸血副作用時間軸分類

輸血副作用の時間軸別分類チャートテンプレート。即時型vs遅発型。

transfusion輸血副作用TRALI溶血反応
輸血副作用時間軸分類

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time after Transfusion", limits = c(0, 30)) +
  scale_y_continuous(name = "Reaction Type", limits = c(0.5, 6.5)) +
  labs(title = "Transfusion Reaction Timeline") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))