発達マイルストーン

発達マイルストーンテンプレート。粗大運動/微細運動/言語/社会性をプロット。

発達マイルストーン運動言語
発達マイルストーン

R Code (ggplot2)

library(ggplot2)

# ---- Developmental Milestones ----
# あなたのデータを入力してください
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 (months)", limits = c(0, 36)) +
  scale_y_continuous(name = "Developmental domain", limits = c(0, 5)) +
  labs(title = "Developmental Milestones") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))