GCS経時変化チャート

GCS経時変化テンプレート。グラスゴー・コーマ・スケールの推移を記録。

GCS意識経時変化神経
GCS経時変化チャート

R Code (ggplot2)

library(ggplot2)

# ---- GCS Trend 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 = "Time (hours)", limits = c(0, 48)) +
  scale_y_continuous(name = "GCS Score", limits = c(3, 15)) +
  labs(title = "GCS Trend Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))