ワクチン応答曲線

ワクチン接種後の免疫応答曲線テンプレート。抗体価の上昇と維持をプロット。

ワクチン免疫応答IgG
ワクチン応答曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Weeks post-vaccination", limits = c(0, 24)) +
  scale_y_continuous(name = "IgG titer (AU/mL)", limits = c(0, 1000)) +
  labs(title = "Vaccine Response Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))