ELISA検量線

ELISA検量線テンプレート。抗原濃度と吸光度の関係をプロット。定量に使用。

ELISA検量線吸光度
ELISA検量線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Concentration (ng/mL)", limits = c(0, 1000)) +
  scale_y_continuous(name = "OD (450 nm)", limits = c(0, 3)) +
  labs(title = "ELISA Standard Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))