疾病の自然史タイムライン

疾病の自然史とスクリーニング介入タイムラインテンプレート。

natural history自然史スクリーニング発症前期
疾病の自然史タイムライン

R Code (ggplot2)

library(ggplot2)

# ---- Disease Natural History Timeline ----
# あなたのデータを入力してください
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", limits = c(0, 10)) +
  scale_y_continuous(name = "Disease Stage", limits = c(0, 4)) +
  labs(title = "Disease Natural History Timeline") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))