標準曲線(検量線)

標準曲線(検量線)テンプレート。定量分析の基盤。

標準曲線検量線定量濃度
標準曲線(検量線)

R Code (ggplot2)

library(ggplot2)

# ---- 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", limits = c(0, 100)) +
  scale_y_continuous(name = "Absorbance/Signal", limits = c(0, 3)) +
  labs(title = "Standard Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))