expValBb {dbd} | R Documentation |
Expected value of a beta binomial distribution.
Description
Calculate the expected value (theoretical mean) of a random variable having a beta binomial distribution.
Usage
expValBb(mo,...)
## S3 method for class 'mleBb'
expValBb(mo,...)
## Default S3 method:
expValBb(mo, size, ...)
Arguments
mo |
For the |
size |
Integer scalar specifying the upper limit of the “support”
of the beta binomial distribution under consideration. The support
is the set of integers |
... |
Not used. |
Details
For the "mleBb"
method, the single argument should really
be called (something like) “object
” and for the
default method the first argument should be called m
.
However the argument lists must satisfy the restrictions that
“A method must have all the arguments of the generic,
including ... if the generic does.” and “A method
must have arguments in exactly the same order as the generic.”
For the "mleBb"
method, the values of m
and size
are extracted from the attributes of mo
.
The expected value of a beta binomial distribution is trivial to calculate “by hand”. These functions are provided for convenience and to preserve parallelism with the db distribution.
Value
Numeric scalar equal to the expected value of a beta binomial distributed random variable with the given parameters.
Author(s)
Rolf Turner r.turner@auckland.ac.nz
See Also
Examples
expValBb(0.3,15)
X <- hmm.discnp::Downloads
fit <- mleBb(X,size=15)
expValBb(fit)