側弯症(コブ角)

コブ角測定テンプレート。脊柱側弯の進行評価に使用。

コブ角側弯症脊柱
側弯症(コブ角)

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Vertebral level", limits = c(0, 20)) +
  scale_y_continuous(name = "Cobb angle (degrees)", limits = c(0, 60)) +
  labs(title = "Scoliosis (Cobb Angle)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))