薬物血中濃度モニタリング

精神科薬物の血中濃度モニタリングテンプレート。治療域内管理に使用。

TDM血中濃度リチウム
薬物血中濃度モニタリング

R Code (ggplot2)

library(ggplot2)

# ---- Drug Plasma Monitoring ----
# あなたのデータを入力してください
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, 24)) +
  scale_y_continuous(name = "Plasma level (ng/mL)", limits = c(0, 200)) +
  labs(title = "Drug Plasma Monitoring") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))