治療域
治療域テンプレート。MEC(最小有効濃度)とMTC(最小中毒濃度)の範囲をプロット。

R Code (ggplot2)
library(ggplot2) # ---- Therapeutic Window ---- # あなたのデータを入力してください 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 (hr)", limits = c(0, 48)) + scale_y_continuous(name = "Plasma concentration (ug/mL)", limits = c(0, 50)) + labs(title = "Therapeutic Window") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







