確率的vs確定的影響線量効果曲線

放射線の確率的影響vs確定的影響の線量-効果曲線テンプレート。閾値あり/なし比較。

stochasticdeterministic確率的確定的閾値LNT
確率的vs確定的影響線量効果曲線

R Code (ggplot2)

library(ggplot2)

# ---- Stochastic vs Deterministic Radiation Effect ----
# あなたのデータを入力してください
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, 10)) +
  scale_y_continuous(name = "Effect / Risk", limits = c(0, 1)) +
  labs(title = "Stochastic vs Deterministic Radiation Effect") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))