骨年齢評価

骨年齢評価テンプレート。暦年齢との乖離をプロット。

骨年齢成長評価
骨年齢評価

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Chronological age (years)", limits = c(0, 18)) +
  scale_y_continuous(name = "Bone age (years)", limits = c(0, 18)) +
  labs(title = "Bone Age Assessment") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))