年齢調整

年齢調整死亡率テンプレート。粗死亡率と年齢調整死亡率の比較に使用。

年齢調整死亡率標準化
年齢調整

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Age group", limits = c(0, 8)) +
  scale_y_continuous(name = "Rate (per 100,000)", limits = c(0, 200)) +
  labs(title = "Age Standardization") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))