関節裂隙測定

関節裂隙測定テンプレート。関節症の進行評価に使用。

関節裂隙変形性関節症
関節裂隙測定

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Assessment point", limits = c(0, 5)) +
  scale_y_continuous(name = "Joint space (mm)", limits = c(0, 6)) +
  labs(title = "Joint Space Measurement") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))