NIHSSスコア推移

NIHSSスコア推移テンプレート。脳卒中重症度の経時的評価に使用。

NIHSS脳卒中重症度経時変化
NIHSSスコア推移

R Code (ggplot2)

library(ggplot2)

# ---- NIHSS Score Trend ----
# あなたのデータを入力してください
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, 72)) +
  scale_y_continuous(name = "NIHSS Score", limits = c(0, 42)) +
  labs(title = "NIHSS Score Trend") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))