用量調節(腎機能)
腎機能に基づく用量調節テンプレート。GFRと投与量の関係をプロット。

R Code (ggplot2)
library(ggplot2) # ---- Dose Adjustment (Renal) ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "GFR (mL/min)", limits = c(0, 120)) + scale_y_continuous(name = "Dose (% of normal)", limits = c(0, 100)) + labs(title = "Dose Adjustment (Renal)") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







