腫瘍マーカー

腫瘍マーカーの経時変化テンプレート。治療効果と再発のモニタリングに使用。

腫瘍マーカーCEAAFPCA19-9
腫瘍マーカー

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Time (months)", limits = c(0, 24)) +
  scale_y_continuous(name = "Marker level", limits = c(0, 100)) +
  labs(title = "Tumor Markers") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))