疾患有病率ドットプロット

疾患有病率ドットプロットテンプレート。地域別の有病率を比較。

dot plotドット有病率prevalence
疾患有病率ドットプロット

R Code (ggplot2)

library(ggplot2)

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