アプガースコアチャート

アプガースコアチャートテンプレート。新生児の状態評価(1分・5分)に使用。

APGAR新生児出生時スコア
アプガースコアチャート

R Code (ggplot2)

library(ggplot2)

# ---- APGAR Score 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 = "Assessment", limits = c(0, 6)) +
  scale_y_continuous(name = "Score", limits = c(0, 10)) +
  labs(title = "APGAR Score Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))