不妊治療累積妊娠率

不妊治療の累積妊娠率ステップアップ曲線テンプレート。タイミング→AIH→IVF。

infertility不妊累積妊娠率IVFAIH
不妊治療累積妊娠率

R Code (ggplot2)

library(ggplot2)

# ---- Infertility Treatment Cumulative Pregnancy Rate ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Cycle Number", limits = c(0, 12)) +
  scale_y_continuous(name = "Cumulative Pregnancy Rate (%)", limits = c(0, 80)) +
  labs(title = "Infertility Treatment Cumulative Pregnancy Rate") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))