パルトグラム(WHO標準)

パルトグラムテンプレート。子宮口開大と児頭下降の経過記録。

partogramパルトグラム分娩子宮口開大
パルトグラム(WHO標準)

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (hours)", limits = c(0, 16)) +
  scale_y_continuous(name = "", limits = c(0, 2)) +
  labs(title = "Partogram (WHO Standard)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))