単回投与薬物動態曲線
単回投与薬物動態曲線テンプレート。Cmax・Tmax・AUCの解析に使用。

R Code (ggplot2)
library(ggplot2) # ---- Single Dose PK Curve ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Time (hours)", limits = c(0, 24)) + scale_y_continuous(name = "Plasma Concentration (μg/mL)", limits = c(0, 100)) + labs(title = "Single Dose PK Curve") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







