Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Fix typos in ZIP documentation #2

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions R/estimate_zipoisson.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
# https://math.stackexchange.com/questions/2761563/maximum-likelihood-estimation-for-zero-inflated-poisson-distribution
# https://ieeexplore.ieee.org/document/9032203

#' @title Random data generation for the zero-infalted Poisson distribution
#' @title Maximum likelihood estimation for the zero-inflated Poisson distribution
#' with Poisson parameter lambda and zero proportion prop.zero.
#'
#' @description Given data, computes the maximum likelihood estimators
#' for the zero-infalted Poisson distribution.
#' for the zero-inflated Poisson distribution.
#'
#' @param data The data to estimate parameters from.
#' @returns Maximum likelihood estimators of for the zero-inflated Poisson
#' @returns Maximum likelihood estimators of the zero-inflated Poisson
#' distribution
#' @name estimate_zi_poisson
estimate_zi_poisson <- function(data) {
Expand Down
Loading