CTウインドウ設定

CTウインドウ設定テンプレート。各組織・目的別のウインドウ条件を記録。

ウインドウCTWWWL
CTウインドウ設定

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Window Width", limits = c(0, 4000)) +
  scale_y_continuous(name = "Window Level", limits = c(-1000, 1000)) +
  labs(title = "CT Window Settings") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))