Generic method for obtaining the expectation of f with respect to x.

expectation(x, g, ...)

Arguments

x

The distribution object.

g

The function to take the expectation of.

...

Additional arguments to pass into g.

Value

The expected value of g(x).

Examples

# \donttest{
x <- exponential(1)
# E[X] for Exp(1) is 1
expectation(x, function(t) t)
#> [1] 1
# }