library(reticulate)
library(dMod)
# Define an example equation vector
eqnvec <- as.eqnvec(
c("-k1*A/(Km+A) + k2*B", "k1*A/(Km+A) - k2*B"),
names = c("A", "B")
)
# Apply the corrected transformation
log_transformed_eqns <- x2logx(eqnvec, c("B"))
# Inspect the transformed equations
print(log_transformed_eqns)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.