胎児体重成長曲線

胎児体重成長曲線テンプレート。在胎週数別の推定胎児体重パーセンタイル。

growth成長曲線胎児体重パーセンタイル
胎児体重成長曲線

R Code (ggplot2)

library(ggplot2)

# ---- Fetal Weight Growth 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 = "Gestational Age (weeks)", limits = c(20, 42)) +
  scale_y_continuous(name = "Estimated Fetal Weight (g)", limits = c(0, 5000)) +
  labs(title = "Fetal Weight Growth Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))