HbA1c推移チャート

HbA1c推移チャートテンプレート。糖尿病のコントロール状況を長期的に評価。

HbA1c糖尿病血糖コントロール推移
HbA1c推移チャート

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Month", limits = c(0, 12)) +
  scale_y_continuous(name = "HbA1c (%)", limits = c(4, 14)) +
  labs(title = "HbA1c Trend Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))