薬物相互作用(相乗効果)

薬物相互作用テンプレート。相乗・相加・拮抗効果の比較をプロット。

相互作用相乗拮抗
薬物相互作用(相乗効果)

R Code (ggplot2)

library(ggplot2)

# ---- Drug Interaction (Synergy) ----
# あなたのデータを入力してください
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 [Drug A] (M)", limits = c(-9, -3)) +
  scale_y_continuous(name = "Response (% max)", limits = c(0, 100)) +
  labs(title = "Drug Interaction (Synergy)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))