疼痛管理ラダー
WHO疼痛管理ラダーテンプレート。3段階の鎮痛法をプロット。

R Code (ggplot2)
library(ggplot2) # ---- Pain Management Ladder ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Pain severity", limits = c(0, 4)) + scale_y_continuous(name = "Treatment step", limits = c(0, 3)) + labs(title = "Pain Management Ladder") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







