薬物動態パラメータ散布図
薬物動態パラメータ散布図テンプレート。AUCとCmaxの関係。

R Code (ggplot2)
library(ggplot2) # ---- PK Parameter Scatter ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "AUC (ng·h/mL)", limits = c(0, 1000)) + scale_y_continuous(name = "Cmax (ng/mL)", limits = c(0, 200)) + labs(title = "PK Parameter Scatter") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







