在胎週数別RDS発症率

在胎週数別RDS発症率曲線テンプレート。サーファクタント成熟との関連。

RDS呼吸窮迫在胎週数サーファクタント早産
在胎週数別RDS発症率

R Code (ggplot2)

library(ggplot2)

# ---- RDS Incidence by Gestational Age ----
# あなたのデータを入力してください
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, 40)) +
  scale_y_continuous(name = "RDS Incidence (%)", limits = c(0, 100)) +
  labs(title = "RDS Incidence by Gestational Age") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))