クリアランスプロット
薬物クリアランスのプロット。血中濃度と消失速度の関係をテンプレート。

R Code (ggplot2)
library(ggplot2) # ---- Clearance Plot ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Plasma concentration (ug/mL)", limits = c(0, 100)) + scale_y_continuous(name = "Rate of elimination (ug/hr)", limits = c(0, 500)) + labs(title = "Clearance Plot") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







