試薬ロット散布回帰

試薬ロット散布回帰テンプレート。ロット変更時の互換性評価。

scatterregression試薬ロット臨床検査
試薬ロット散布回帰

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Old Lot Value", limits = c(0, 200)) +
  scale_y_continuous(name = "New Lot Value", limits = c(0, 200)) +
  labs(title = "Reagent Lot Scatter Regression") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))