RECIST治療効果判定

RECIST基準による治療効果判定テンプレート。標的病変の経時変化をプロット。

RECIST治療効果腫瘍縮小
RECIST治療効果判定

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Assessment", limits = c(0, 6)) +
  scale_y_continuous(name = "Sum of target lesions (mm)", limits = c(0, 100)) +
  labs(title = "RECIST Response") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))