出生体重-GA散布回帰

出生体重と在胎週数の散布回帰テンプレート。成長パターンの回帰分析。

scatterregression出生体重在胎週数
出生体重-GA散布回帰

R Code (ggplot2)

library(ggplot2)

# ---- BW vs GA Scatter Regression ----
# あなたのデータを入力してください
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(24, 42)) +
  scale_y_continuous(name = "Birth Weight (g)", limits = c(500, 5000)) +
  labs(title = "BW vs GA Scatter Regression") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))