混合リンパ球反応

混合リンパ球反応テンプレート。刺激細胞数と増殖応答の関係をプロット。

MLR混合リンパ球移植
混合リンパ球反応

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Stimulator cell number", limits = c(0, 1e+05)) +
  scale_y_continuous(name = "CPM (3H-thymidine)", limits = c(0, 50000)) +
  labs(title = "Mixed Lymphocyte Reaction") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))