発熱パターンチャート

発熱パターンチャートテンプレート。弛張熱/間歇熱/稽留熱の鑑別。

fever発熱パターン弛張熱間歇熱
発熱パターンチャート

R Code (ggplot2)

library(ggplot2)

# ---- Fever Pattern 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 = "Day", limits = c(1, 14)) +
  scale_y_continuous(name = "Temperature (°C)", limits = c(36, 41)) +
  labs(title = "Fever Pattern Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))