基本再生産数R₀比較

基本再生産数R₀の病原体別比較テンプレート。

R0基本再生産数麻疹COVIDインフルエンザ
基本再生産数R₀比較

R Code (ggplot2)

library(ggplot2)

# ---- Basic Reproduction Number (R0) Comparison ----
# あなたのデータを入力してください
df <- data.frame(
  x = c(),
  y = c()
)

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "", limits = c(0, 7)) +
  scale_y_continuous(name = "R₀", limits = c(0, 20)) +
  labs(title = "Basic Reproduction Number (R0) Comparison") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))