細胞傷害アッセイ

細胞傷害性アッセイテンプレート。E:T比と特異的溶解率の関係をプロット。

細胞傷害CTLNK溶解
細胞傷害アッセイ

R Code (ggplot2)

library(ggplot2)

# ---- Cytotoxicity 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 = "E:T ratio", limits = c(0, 50)) +
  scale_y_continuous(name = "% Specific lysis", limits = c(0, 100)) +
  labs(title = "Cytotoxicity Assay") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))