ホルモン性基礎体温表

ホルモン性基礎体温表テンプレート。内分泌学的排卵評価。

bbt基礎体温ホルモン内分泌
ホルモン性基礎体温表

R Code (ggplot2)

library(ggplot2)

# ---- Hormonal BBT Chart ----
# あなたのデータを入力してください
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 Day", limits = c(1, 35)) +
  scale_y_continuous(name = "Temperature (°C)", limits = c(36, 37.2)) +
  labs(title = "Hormonal BBT Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))