OGTT+インスリン

OGTT+インスリン同時測定テンプレート。血糖とインスリンの応答を比較。

OGTTインスリン血糖
OGTT+インスリン

R Code (ggplot2)

library(ggplot2)

# ---- OGTT + Insulin ----
# あなたのデータを入力してください
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 (min)", limits = c(0, 120)) +
  scale_y_continuous(name = "Blood glucose (mg/dL) / Insulin (uU/mL)", limits = c(0, 300)) +
  labs(title = "OGTT + Insulin") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))