月経周期

月経周期テンプレート。ホルモン変動と子宮内膜変化をプロット。

月経周期卵胞期黄体期
月経周期

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Day of cycle", limits = c(1, 28)) +
  scale_y_continuous(name = "Hormone level / Endometrial thickness", limits = c(0, 10)) +
  labs(title = "Menstrual Cycle") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))