細胞増殖アッセイ

リンパ球増殖アッセイテンプレート。刺激濃度と増殖指数の関係をプロット。

増殖アッセイリンパ球SI
細胞増殖アッセイ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Stimulus concentration", limits = c(0, 10)) +
  scale_y_continuous(name = "Proliferation index (SI)", limits = c(0, 20)) +
  labs(title = "Cell Proliferation Assay") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))