逆作動薬

逆作動薬の用量反応曲線テンプレート。構成的活性の抑制をプロット。

逆作動薬構成的活性
逆作動薬

R Code (ggplot2)

library(ggplot2)

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