鼻腔症状スコア推移

鼻腔症状スコア推移テンプレート。治療前後のSNOT-22経時変化。

SNOT鼻腔症状スコア副鼻腔
鼻腔症状スコア推移

R Code (ggplot2)

library(ggplot2)

# ---- Nasal Symptom Score (SNOT-22) Progression ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Week", limits = c(0, 24)) +
  scale_y_continuous(name = "SNOT-22 Score", limits = c(0, 110)) +
  labs(title = "Nasal Symptom Score (SNOT-22) Progression") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))