負荷用量・維持用量

負荷用量と維持用量の血中濃度推移テンプレート。定常状態への迅速な到達をプロット。

負荷用量維持用量定常状態
負荷用量・維持用量

R Code (ggplot2)

library(ggplot2)

# ---- Loading & Maintenance Dose ----
# あなたのデータを入力してください
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 = "Loading & Maintenance Dose") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))