ブドウ糖滴定曲線(TmG)

ブドウ糖滴定曲線テンプレート。濾過・再吸収・排泄の関係をプロット。

TmG再吸収糖尿
ブドウ糖滴定曲線(TmG)

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Plasma glucose (mg/dL)", limits = c(0, 600)) +
  scale_y_continuous(name = "Glucose handling (mg/min)", limits = c(0, 600)) +
  labs(title = "Glucose Titration (TmG)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))