https://github.com/cran/unmarked
Raw File
Tip revision: 0e9915b1bbee346e4c283f39772af69032684e39 authored by Ken Kellner on 09 January 2024, 10:20:02 UTC
version 1.4.1
Tip revision: 0e9915b
lambda2psi.Rd
\name{lambda2psi}
\Rdversion{1.1}
\alias{lambda2psi}
\title{
Convert Poisson mean (lambda) to probability of occurrence (psi).
}
\description{
Abundance and occurrence are fundamentally related.
}
\usage{
lambda2psi(lambda)
}
\arguments{
  \item{lambda}{
	Numeric vector with values >= 0
}
}
\value{
	A vector of psi values of the same length as lambda.
}
\seealso{
\code{\link{pcount}}, \code{\link{multinomPois}}, \code{\link{distsamp}}
}
\examples{
lambda2psi(0:5)
}
back to top