線量分布バイオリン

線量分布バイオリンプロットテンプレート。臓器別の被曝線量分布。

violinバイオリン線量臓器放射線
線量分布バイオリン

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Organ", limits = c(0, 4)) +
  scale_y_continuous(name = "Dose (Gy)", limits = c(0, 60)) +
  labs(title = "Dose Distribution Violin") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))