アロステリック酵素(S字型)

アロステリック酵素のS字型(シグモイド)速度曲線テンプレート。協同性の解析に使用。

アロステリック協同性シグモイド
アロステリック酵素(S字型)

R Code (ggplot2)

library(ggplot2)

# ---- Allosteric Enzyme (Sigmoidal) ----
# あなたのデータを入力してください
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 = "Allosteric Enzyme (Sigmoidal)") +
  theme_bw(base_size = 14) +
  theme(plot.title = element_text(face = "bold", hjust = 0.5))