出生体重-在胎週数散布図

出生体重-在胎週数散布図テンプレート。在胎週数と出生体重の関係。

scatter散布図出生体重在胎週数産科
出生体重-在胎週数散布図

R Code (ggplot2)

library(ggplot2)

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