線量体積ヒストグラム(DVH)

線量体積ヒストグラムテンプレート。放射線治療の線量分布評価。

dvh線量体積放射線治療Gy
線量体積ヒストグラム(DVH)

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Dose (Gy)", limits = c(0, 80)) +
  scale_y_continuous(name = "Volume (%)", limits = c(0, 100)) +
  labs(title = "Dose-Volume Histogram (DVH)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))