作動薬-拮抗薬曲線
作動薬-拮抗薬曲線テンプレート。pA2やSchild plotの基盤。

R Code (ggplot2)
library(ggplot2) # ---- Agonist-Antagonist Curves ---- # あなたのデータを入力してください 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[Agonist]", limits = c(-3, 1)) + scale_y_continuous(name = "Response (% Max)", limits = c(0, 100)) + labs(title = "Agonist-Antagonist Curves") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







