放射線量-反応曲線

放射線量-反応曲線テンプレート。腫瘍制御確率と正常組織障害確率。

curve曲線線量TCPNTCP
放射線量-反応曲線

R Code (ggplot2)

library(ggplot2)

# ---- Radiation Dose-Response Curve ----
# あなたのデータを入力してください
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 = "TCP/NTCP (%)", limits = c(0, 100)) +
  labs(title = "Radiation Dose-Response Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))