From ff1d5fa81a10cc374aa40fa13c697baa6ade136c Mon Sep 17 00:00:00 2001 From: Naeem Model Date: Thu, 29 Jun 2023 21:37:15 +0000 Subject: Group internal functions for WP method --- R/WP_known.R | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 R/WP_known.R (limited to 'R/WP_known.R') diff --git a/R/WP_known.R b/R/WP_known.R deleted file mode 100644 index 4c43ed2..0000000 --- a/R/WP_known.R +++ /dev/null @@ -1,24 +0,0 @@ -#' WP method background function WP_known -#' -#' This is a background/internal function called by \code{WP}. It computes the maximum -#' likelihood estimator of R0 assuming that the serial distribution is known and finite discrete. -#' -#' @param NT Vector of case counts. -#' @param p Discretized version of the serial distribution. -#' -#' @return The function returns the maximum likelihood estimator of R0. -#' -#' @keywords internal -WP_known <- function(NT, p) { - k <- length(p) - TT <- length(NT) - 1 - mu_t <- rep(0, TT) - - for (i in 1:TT) { - Nt <- NT[i:max(1, i-k+1)] - mu_t[i] <- sum(p[1:min(k, i)] * Nt) - } - - Rhat <- sum(NT[-1]) / sum(mu_t) - return(Rhat) -} -- cgit v1.2.3