}
# Sequential Bayes
else if (estimator$method == "seqB")
- estimate <- round(seqB(unlist(dataset[3]), mu = serial,
- kappa = estimator$kappa)$Rhat, 2)
+ estimate <- round(seq_bayes(unlist(dataset[3]), mu = serial,
+ kappa = estimator$kappa), 2)
# Incidence Decay
else if (estimator$method == "ID")
- estimate <- round(ID(unlist(dataset[3]), mu = serial), 2)
+ estimate <- round(id(unlist(dataset[3]), mu = serial), 2)
# Incidence Decay with Exponential Adjustement
else if (estimator$method == "IDEA")
- estimate <- round(IDEA(unlist(dataset[3]), mu = serial), 2)
+ estimate <- round(idea(unlist(dataset[3]), mu = serial), 2)
return(estimate)
}