hCG上昇曲線

hCG上昇曲線テンプレート。妊娠初期のhCG推移を表示。

curve曲線hCG妊娠産科
hCG上昇曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Gestational Week", limits = c(3, 14)) +
  scale_y_continuous(name = "hCG (mIU/mL)", limits = c(0, 2e+05)) +
  labs(title = "hCG Rise Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))