前後比較ダンベルチャート

ダンベルチャートテンプレート。介入前後の変化を個別に表示。

ダンベル前後比較介入変化
前後比較ダンベルチャート

R Code (ggplot2)

library(ggplot2)

# ---- Pre-Post Dumbbell 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 = "Value", limits = c(0, 100)) +
  scale_y_continuous(name = "Subject", limits = c(0, 10)) +
  labs(title = "Pre-Post Dumbbell Chart") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))