ハウンスフィールド値スケール

ハウンスフィールド値スケールテンプレート。CT画像の組織密度評価に使用。

ハウンスフィールドHUCT密度
ハウンスフィールド値スケール

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Tissue Type", limits = c(0, 10)) +
  scale_y_continuous(name = "HU Value", limits = c(-1000, 3000)) +
  labs(title = "Hounsfield Unit Scale") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))