量子的用量反応曲線

量子的用量反応曲線テンプレート。ED50・TD50・LD50の決定に使用。

量子的ED50TD50LD50
量子的用量反応曲線

R Code (ggplot2)

library(ggplot2)

# ---- Quantal Dose-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 = "log Dose (mg/kg)", limits = c(-1, 3)) +
  scale_y_continuous(name = "Cumulative % responding", limits = c(0, 100)) +
  labs(title = "Quantal Dose-Response") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))