Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Package | utility | |
Module | mathematics |
You can tell it to assume a mean rather than calculating it if desired. NB: The assumed_mean argument must be explicitly indicated as in the example below ('assumed_mean=0', not just '0'); otherwise, the value specified will simply be included in the list of samples.
dots | The numbers to perform statistics on | ||
assumed_mean | If numeric, assume the mean is this value rather than calculating it; if used, parameter name must be explicitly specified | ||
Allowed: | numeric scalar | ||
Default: | [=] |
- include "statistics.g" - stddev(1:100) 29.0115 - stddev(1:100,assumed_mean=50) # instead of 50.5 29.0158