一次二次免疫応答

一次・二次免疫応答テンプレート。抗体価の時間経過と一次/二次の差をプロット。

一次応答二次応答抗体価
一次二次免疫応答

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Days after exposure", limits = c(0, 60)) +
  scale_y_continuous(name = "Antibody titer (AU)", limits = c(0, 10000)) +
  labs(title = "Primary/Secondary Response") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))