dist_cdf | R Documentation |
This is a generic function for calculating
the cumulative distribution function (cdf) of
distribution objects. This is similar to base R's pnorm
for the normal distribution.
The dist_cdf
function calculates the
cumulative probability distribution for the
current parameters and xmin value.
dist_cdf(m, q = NULL, lower_tail = FALSE)
## S4 method for signature 'conlnorm'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'conlnorm'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'conexp'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'conexp'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'conpl'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'conpl'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'conweibull'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'conweibull'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'disexp'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'disexp'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'dislnorm'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'dislnorm'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'displ'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'displ'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
## S4 method for signature 'dispois'
dist_cdf(m, q = NULL, lower_tail = TRUE)
## S4 method for signature 'dispois'
dist_all_cdf(m, lower_tail = TRUE, xmax = 1e+05)
m |
a distribution object. |
q |
a vector values where the function will be evaluated.
If |
lower_tail |
logical; if |
xmax |
default |
This method does not alter the internal state of the distribution objects.
##########################################
#Load data and create distribution object#
##########################################
data(moby_sample)
m = displ$new(moby_sample)
m$setXmin(7); m$setPars(2)
##########################################
#Calculate the CDF at a particular values#
##########################################
dist_cdf(m, 10:15)
##########################################
#Calculate the CDF at the data values #
##########################################
dist_cdf(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.