アミノ酸滴定曲線

アミノ酸の滴定曲線テンプレート。pKa値とpIの決定に使用。

アミノ酸pKapI滴定
アミノ酸滴定曲線

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "Equivalents of OH-", limits = c(0, 3)) +
  scale_y_continuous(name = "pH", limits = c(0, 14)) +
  labs(title = "Amino Acid Titration") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))