臨床判断値

臨床判断値テンプレート。カットオフ値の設定に使用。

臨床判断値カットオフ感度特異度
臨床判断値

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Analyte value", limits = c(0, 100)) +
  scale_y_continuous(name = "Clinical outcome probability", limits = c(0, 1)) +
  labs(title = "Clinical Decision Limits") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))