投薬スケジュール表

投薬スケジュールヒートマップ。術後の薬剤投与計画を可視化。

投薬スケジュール術後ヒートマップ
投薬スケジュール表

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Days", limits = c(0, 7)) +
  scale_y_continuous(name = "Medications", limits = c(0, 6)) +
  labs(title = "Drug Schedule Heatmap") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))