基礎体温表

基礎体温表テンプレート。排卵評価のための月経周期体温記録。

bbt基礎体温排卵月経体温
基礎体温表

R Code (ggplot2)

library(ggplot2)

# ---- Basal Body Temperature 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 = "Basal Body Temperature Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))