Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Monte Carlo/Statistics symbols consistency #21

Open
Oleg-Krivosheev opened this issue May 31, 2017 · 1 comment
Open

Monte Carlo/Statistics symbols consistency #21

Oleg-Krivosheev opened this issue May 31, 2017 · 1 comment

Comments

@Oleg-Krivosheev
Copy link

In general, convention for Statistics and Monte Carlo is as following:

  • Distribution parameters are marked with Greek letters/symbols
  • Sampling results are marked with Latin letters/symbols

$\mu$ vs $m$, and $\sigma$ vs $s$
For example,

distribution parameters, in Greek

mu = 0.0
sigma = 1.0
v = np.random.normal(mu, sigma, 1000)

Sampling parameters, in Latin

m = np.mean(v)
s = np.std(v)

@mdipierro
Copy link
Owner

I like this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants