distcrete {distcrete} | R Documentation |
Discretise a distribution
Description
Discretise a distribution.
Usage
distcrete(name, interval, ..., w = 0.5, anchor = 0)
Arguments
name |
The name of a distribution function (e.g.,
|
interval |
The interval to discretise the interval onto. |
... |
Parameters to |
w |
How to weight the endpoints; must be between 0 and 1. If 0.5 then integration happens centred around the interval, if 0 floor, if 1 then ceiling. |
anchor |
Any location that is a valid |
Author(s)
Rich FitzJohn
Examples
library(distcrete)
set.seed(415)
d0 <- distcrete("gamma", 1, shape = 3, w = 0)
d0$d(1:10)
d0$p(c(.1,.5))
d0$q(c(.1,.5))
d0$r(10)
[Package distcrete version 1.0.3 Index]