Glossary
General
English
- increasing function
- nondecreasing function
- interval \([a,b)\)
French
- fonction strictement croissante
- fonction croissante
- intervalle \([a,b[\)
Probability/Statistics
English
- probability distribution
- expectation
- likelihood
- distribution tail
- CDF (Cumul. Distrib. Func.)
- PDF (Proba. Density Func.)
- CLT (Central Limit Theorem)
- LLN (Law of Large Numbers)
French
- loi de probabilité
- espérance
- vraissemblance
- queue de distribution
- Fonction de Répartition
- Densité d’une distribution
- TLC (Th. de la limite centrale)
- Loi des grands nombres
Hypothesis Testing
English
- A sample
- one-sided test
- two-sided test
- chi-squared goodness of fit test
- chi-squared homogeneity test
French
- Un échantillon
- test unilatéral
- test bilatéral
- test d’adéquation du Khi-deux
- test d’homogénéité du Khi-deux
Programming Languages (JupytR)
Julia
using Distributions
= 100
n = 20
x = 0.5
p = 0.95
q
cdf(Binomial(n, p), x)
quantile(Binomial(n,p), q)
cdf(Normal(0,1), x)
quantile(Normal(0,1), q)
cdf(Chisq(n), x) # Chi-squared
cdf(TDist(n), x) # Student
= 5,10
n1,n2 cdf(FDist(n1, n2), x) # Fisher
= 2
lmbda cdf(Gamma(n, lmbda), x) # Gamma
cdf(Poisson(lmbda), x) # Poisson
Python
from scipy.stats import *
= 100
n = 20
x = 0.5
p = 0.95
q
binom.cdf(x, n, p)# Quantile
binom.ppf(q, n, p)
norm.cdf(x)
norm.ppf(q)
chi2.cdf(x, n)# Student
t.cdf(x, n)
= 5,10
n1,n2 # Fisher
f.cdf(x, n1, n2)
= 2
lmbda # Gamma
gamma.cdf(x,n,lmbda) # Poisson poisson.cdf(x, lmbda)
R
= 100
n = 20
x = 0.5
p = 0.95
q
pbinom(x, n, p)
qbinom(q, n, p)
pnorm(x)
qnorm(q)
pchisq(x, n)
pt(x, n)
= 5,10
n1,n2 pf(x, n1,n2)
= 2
lmbda pgamma(x,n,lmbda)
ppois(x, lmbda)