| calculate_isothermal_FIM | R Documentation |
Fisher Information Matrix for isothermal experiments
calculate_isothermal_FIM(model, exp_design, pars)
model |
character defining the inactivation model according to the rules
in the |
exp_design |
data.frame with two columns named |
pars |
list defining the model parameters according to the rules defined
in the |
library("dplyr")
time_profile <- seq(0, 50, length = 20)
Temp_profile <- seq(52.5,60, length = 3)
exp_design <- expand.grid(time_profile,Temp_profile) %>%
rename(times = Var1, temperature = Var2)
pars <- list(temp_crit = 55,
n = 1.5,
k_b = 0.1)
calculate_isothermal_FIM("Peleg", exp_design, pars )