成長速度

成長速度曲線テンプレート。思春期のスパートを含む成長速度をプロット。

成長速度思春期スパート
成長速度

R Code (ggplot2)

library(ggplot2)

# ---- Growth Velocity ----
# あなたのデータを入力してください
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, 18)) +
  scale_y_continuous(name = "Height velocity (cm/yr)", limits = c(0, 20)) +
  labs(title = "Growth Velocity") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))