インスリン製剤別作用プロファイル

インスリン製剤別作用プロファイルテンプレート。超速効型/速効型/中間型/持効型の比較。

insulinインスリン作用時間超速効持効型
インスリン製剤別作用プロファイル

R Code (ggplot2)

library(ggplot2)

# ---- Insulin Action Time Profile ----
# あなたのデータを入力してください
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 (hours)", limits = c(0, 24)) +
  scale_y_continuous(name = "Insulin Activity", limits = c(0, 1)) +
  labs(title = "Insulin Action Time Profile") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))