p-methods {distr} | R Documentation |
p-methods
signature(object = "Distribution")
: returns the cumulative distribution function (c.d.f.),
i.e.; p(t) = P(object \le t)
signature(object = "Distribution")
:
from distr-2.6 onwards, we provide this as a synonym for
method p
; this synonym more explicitely states that we are dealing with
the right-continuous variant of a c.d.f.
Distribution-class
, p.l
require(distr)
N <- Norm()
p(N)(0.3)
p.r(N)(0.3)