中毒スクリーニング

中毒スクリーニングテンプレート。薬物/毒物の血中濃度を評価。

中毒スクリーニング血中濃度
中毒スクリーニング

R Code (ggplot2)

library(ggplot2)

# ---- Toxicology Screening ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Substance", limits = c(0, 8)) +
  scale_y_continuous(name = "Level", limits = c(0, 100)) +
  labs(title = "Toxicology Screening") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))