dtnorm | R Documentation |
Density function of Truncated Normal Distribution
Cumulative probability function of Truncated Normal Distribution
Quantile function of Truncated Normal Distribution max(0,min(claim,limit)-deductible)
Random generation of Truncated Normal Distribution max(0,min(claim,limit)-deductible)
dtnorm(x, mean, sd, min = 0, max = 1e+09) ptnorm(q, mean, sd, min = 0, max = 1e+09) qtnorm(p, mean, sd, min = 0, max = 1e+09) rtnorm(n, mean, sd, min = 0, max = 1e+09)
x |
Value of the variable after deductible and limit max(0,min(claim,limit)-deductible) |
mean |
Mean of the untruncated Normal distribution |
sd |
Standard deviation of the untruncated Normal distribution |
min |
Left truncation (like deductible) |
max |
Right truncation (like 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 |
dtnorm(0.5,1,2) ptnorm(0.5,1,2) qtnorm(0.5,1,2) rtnorm(100,1,2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.