親和性成熟
親和性成熟テンプレート。二次応答での抗体親和性上昇をプロット。

R Code (ggplot2)
library(ggplot2) # ---- Affinity Maturation ---- # あなたのデータを入力してください 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 (weeks)", limits = c(0, 20)) + scale_y_log10(name = "Antibody affinity (Ka)", limits = c(10000, 1e+10)) + labs(title = "Affinity Maturation") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







