頭囲成長曲線
頭囲成長曲線テンプレート。乳幼児の頭囲推移を評価。

R Code (ggplot2)
library(ggplot2) # ---- Head Circumference 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 = "Age (months)", limits = c(0, 36)) + scale_y_continuous(name = "Head Circumference (cm)", limits = c(30, 55)) + labs(title = "Head Circumference Chart") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







