組織別HU値(箱ひげ図)

組織別のHU値分布を比較する箱ひげ図テンプレート。

HU組織箱ひげCT
組織別HU値(箱ひげ図)

R Code (ggplot2)

library(ggplot2)

# ---- Hounsfield by Tissue (Boxplot) ----
# あなたのデータを入力してください
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", limits = c(0, 6)) +
  scale_y_continuous(name = "Hounsfield Unit", limits = c(-1000, 1500)) +
  labs(title = "Hounsfield by Tissue (Boxplot)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))