治療係数

治療係数テンプレート。ED50とTD50の比で安全域を評価。

治療係数TI安全域
治療係数

R Code (ggplot2)

library(ggplot2)

# ---- Therapeutic Index ----
# あなたのデータを入力してください
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 = "Therapeutic Index") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))