ブラッドフォード検量線

ブラッドフォードアッセイの検量線。タンパク質定量に使用するテンプレート。

ブラッドフォードタンパク質定量検量線
ブラッドフォード検量線

R Code (ggplot2)

library(ggplot2)

# ---- Bradford Assay 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 = "Protein concentration (ug/mL)", limits = c(0, 2000)) +
  scale_y_continuous(name = "Absorbance (595 nm)", limits = c(0, 1.5)) +
  labs(title = "Bradford Assay Standard Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))