dtpois {cascsim} | R Documentation |
Density function of Truncated Poisson Distribution
Description
Density function of Truncated Poisson Distribution
Cumulative probability function of Truncated Poisson Distribution
Quantile function of Truncated Poisson Distribution max(0,min(claim,limit)-deductible)
Random generation of Truncated Poisson Distribution max(0,min(claim,limit)-deductible)
Usage
dtpois(x, lambda, min = 0, max = 1e+09)
ptpois(q, lambda, min = 0, max = 1e+09)
qtpois(p, lambda, min = 0, max = 1e+09)
rtpois(n, lambda, min = 0, max = 1e+09)
Arguments
x |
Value of the variable after deductible and limit max(0,min(claim,limit)-deductible) |
lambda |
Distribution parameter |
min |
Left truncation deductible |
max |
Right truncation limit |
q |
Value of the variable after deductible and limit max(0,min(claim,limit)-deductible) |
p |
Value of the probability |
n |
Number of samples |
Examples
dtpois(3,5)
ptpois(3,5)
qtpois(0.6,5)
rtpois(100,5)
[Package cascsim version 0.4 Index]