p-methods
From distr v2.7.0
by Peter Ruckdeschel
Methods for Function p in Package `distr'
p-methods
- Keywords
- methods, distribution
Methods
- p
signature(object = "Distribution")
: returns the cumulative distribution function (c.d.f.), i.e.; \(p(t) = P(object \le t)\)- p.r
signature(object = "Distribution")
: from distr-2.6 onwards, we provide this as a synonym for methodp
; this synonym more explicitely states that we are dealing with the right-continuous variant of a c.d.f.
See Also
Distribution-class
, p.l
Examples
# NOT RUN {
require(distr)
N <- Norm()
p(N)(0.3)
p.r(N)(0.3)
# }
Community examples
Looks like there are no examples yet.