薬物動態(反復投与)

反復投与時の血中濃度推移テンプレート。定常状態への到達をプロット。

薬物動態反復投与定常状態蓄積
薬物動態(反復投与)

R Code (ggplot2)

library(ggplot2)

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