部分作動薬
部分作動薬の用量反応曲線テンプレート。完全作動薬との比較をプロット。

R Code (ggplot2)
library(ggplot2) # ---- Partial 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 (% max)", limits = c(0, 100)) + labs(title = "Partial Agonist") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







