年齢別BMI

年齢別BMI曲線テンプレート。肥満/低体重の評価に使用。

BMI年齢肥満低体重
年齢別BMI

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Age (years)", limits = c(2, 18)) +
  scale_y_continuous(name = "BMI (kg/m2)", limits = c(10, 35)) +
  labs(title = "BMI-for-Age") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))