pH滴定曲線

pH滴定曲線テンプレート。酸塩基滴定の記録に使用。

pH滴定酸塩基緩衝液
pH滴定曲線

R Code (ggplot2)

library(ggplot2)

# ---- pH Titration 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 = "Volume of Base (mL)", limits = c(0, 50)) +
  scale_y_continuous(name = "pH", limits = c(0, 14)) +
  labs(title = "pH Titration Curve") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))