更年期ホルモン変化グラフ

更年期ホルモン変化テンプレート。FSH/LH/エストラジオールの閉経前後推移。

menopause更年期FSHLHestradiol閉経
更年期ホルモン変化グラフ

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Years around Menopause", limits = c(-10, 10)) +
  scale_y_continuous(name = "Hormone Level (relative)", limits = c(0, 100)) +
  labs(title = "Menopause Hormone Transition") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))