体表面積スコアグリッド

体表面積スコアグリッドテンプレート。皮膚疾患の範囲評価(PASI等)に使用。

体表面積スコアPASI皮膚
体表面積スコアグリッド

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Body Region", limits = c(0, 10)) +
  scale_y_continuous(name = "Score", limits = c(0, 10)) +
  labs(title = "Body Area Scoring Grid") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))