Created
October 15, 2013 05:27
-
-
Save natbusa/6986929 to your computer and use it in GitHub Desktop.
Some simple sample statistics to estimate the true mean value from mean monte carlo statistics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> mean.muhat = mean(mean.statistics) | |
> mean.muhat | |
[1] 0.007315414 | |
> | |
> mean.sehat = sd(mean.statistics) | |
> mean.sehat | |
[1] 0.4974518 | |
> | |
> # mean = 0.007 +- 2*0.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment