酵素活性散布回帰
酵素活性散布回帰テンプレート。基質濃度と反応速度の回帰分析。

R Code (ggplot2)
library(ggplot2) # ---- Enzyme Activity Scatter Regression ---- # あなたのデータを入力してください df <- data.frame( x = c(), y = c() ) ggplot(df, aes(x = x, y = y)) + geom_point(size = 2) + geom_line() + scale_x_continuous(name = "Substrate (mM)", limits = c(0, 50)) + scale_y_continuous(name = "Reaction Rate (U/mg)", limits = c(0, 200)) + labs(title = "Enzyme Activity Scatter Regression") + theme_bw(base_size = 14) + theme(plot.title = element_text(face = "bold", hjust = 0.5))







