体組成の年齢別変化

体組成の年齢別変化テンプレート。水分・脂肪・筋肉の割合推移。

body composition体組成水分脂肪筋肉年齢
体組成の年齢別変化

R Code (ggplot2)

library(ggplot2)

# ---- Age-Related Body Composition Changes ----
# あなたのデータを入力してください
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(0, 80)) +
  scale_y_continuous(name = "% Body Weight", limits = c(0, 100)) +
  labs(title = "Age-Related Body Composition Changes") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))