mean
mean, function
def pure mean(r: ranvar): number
Returns the mean of the ranvar r.
r: input distribution.
Examples
r = poisson(2)
show table "Mean" with
mean(r) as "Value"
This produces the following table:
| Value |
|---|
| 1.999924 |
def pure mean(r: ranvar): number
Returns the mean of the ranvar r.
r: input distribution.r = poisson(2)
show table "Mean" with
mean(r) as "Value"
This produces the following table:
| Value |
|---|
| 1.999924 |