R Markdown

Fitting a reparameterised Gompertz growth model using R

Using the data set “gomp1.csv”, find the parameters of the reparameterised Gompertz model. \[\begin{equation} y= y_0 + (y_{max} -y_0)*exp(-exp(k*(lag-x)/(y_{max}-y_0) + 1) ) \end{equation}\] Import the data set. dat <- read.

Fitting a first-order or loglinear growth model using R

The data set “FirstOrder.csv” contains observations of microbial concentrations (log N) measured at different times (t) at a given environmental condition. Lets fit a first-order growth kinetics model \(log N = log N_0 + k \times t\) to the experimental data.