不拮抗阻害

不拮抗阻害の酵素反応速度。Km・Vmax共に変化するパターンをプロットするテンプレート。

酵素阻害不拮抗動力学
不拮抗阻害

R Code (ggplot2)

library(ggplot2)

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

ggplot(df, aes(x = x, y = y)) +
  geom_point(size = 2) +
  geom_line() +
  scale_x_continuous(name = "[S] (mM)", limits = c(0, 10)) +
  scale_y_continuous(name = "v (umol/min)", limits = c(0, 10)) +
  labs(title = "Uncompetitive Inhibition") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))