Skip to content

Files

Latest commit

2cc560b · Aug 16, 2016

History

History
24 lines (22 loc) · 3.12 KB

distributions.md

File metadata and controls

24 lines (22 loc) · 3.12 KB

Distributions

Guesstimate supports a variety of statistical distributions beyond those selectable from confidence intervals. If the input parameters to these distribution functions are deterministic, 5000 samples will be generated at those parameter values. If the inputs are themselves sampled, one sample will be drawn, per input sample.

Distribution Name Use Cases Syntax
Beta Estimating Proporitions or Percentages =beta ( α , β )
Central F Testing the Variance of Observed Samples =centralF ( d 1 , d 2 )
Cauchy The x-intercept of a ray with uniformly distributed angle =cauchy ( x 0 , γ )
Chi-squared The sum of the squares of normal random variables =chisquare ( k )
Exponential The waiting time until the occurence of a rare event with a specified rate. =exponential ( λ )
Gamma A generalization of the sum of exponential random variables =gamma ( k , θ )
Inverse-gamma The reciprocal of a gamma random variable =invgamma ( α , β )
Lognormal The product of many positive, independent random variables =lognormal ( μ , σ )
Normal The sum of many independent random variables =normal ( μ , σ )
Student's T An estimator for the difference between the true mean and the mean of N independent samples of a random variable, for small N. =studentt ( ν )
Weibull The lifetime of a component for which failure rate is proportional to time =weibull ( λ , k )
[Uniform (continuous)](https://en.wikipedia.org/wiki/Uniform_distribution_(continuous) An estimate where all equally sized uniforms have the same likelihood =uniform ( a , b )
Bernoulli The value 1 (success) with probability p , and 0 (failure) otherwise. Used for accounting for discrete trials. =bernoulli ( p ) , =test ( p )
Binomial The sum of n independent Bernoulli distributions with parameter p =binomial ( n , p )
Negative Binomial The number of success before r failures is reached in a series of Bernoulli trials with parameter p =negBinomial ( r , p )
Poisson The number of events occurring in a fixed interval, with known average rate λ , if events occur independently. =poisson ( λ )