-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4496de3
commit 2cc560b
Showing
11 changed files
with
107 additions
and
288 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
# Interpreting Your Results | ||
|
||
 | ||
 | ||
|
||
The standard view shows the average observed value and the 90% confidence interval (CI) around that value; in this example, the node says that 90% of the time, the number of months you could survive is within 6.5 - 3.2 = 3.3 and 6.5 + 3.2 = 9.7 months. | ||
The metric card will show the expected value of that metric and a 90% confidence interval (CI) around that value; in this | ||
example, the card shows that the metric has an expected value of 78, and 90% of the time the value of the metric is | ||
between 37 and 160. This 90% confidence interval is formed from the upper 95% of the samples below the mean and the | ||
lower 95% of the samples above the mean. | ||
|
||
 | ||
 | ||
|
||
The expanded view shows the same mean and CI (red box) and a table of percentiles (blue box). Percentiles show how likely it is that the observed value would fall below a threshold; here, there is a 1% chance that you could only survive for fewer than 3.08 months, and a 95% chance that you could only survive for fewer than 9.539 months. | ||
The expanded view shows the same mean and CI (red box) and a table of percentiles (blue box). Percentiles show how | ||
likely it is that the observed value would fall below a threshold; here, there is a 1% chance that you could only | ||
survive for fewer than 15.781 months, and a 95% chance that you could only survive for fewer than 46.562 months. | ||
|
||
To ask, "How often will I be able to survive for more than 9.539 months?", simply subtract the percentile for that value (95%) from 100%. Here, you could survive for more than 9.539 months only 5% of the time. | ||
To ask, "How often will I be able to survive for more than 46.562 months?", simply subtract the percentile for that value | ||
(95%) from 100%. Here, you could survive for more than 46.562 months only 5% of the time. |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,24 @@ | ||
# 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. | ||
|
||
[Beta](https://en.wikipedia.org/wiki/Beta_distribution) | ||
`=beta(α, β)` | ||
|
||
[Central F](https://en.wikipedia.org/wiki/F-distribution) | ||
`=centralF(d<sub>1</sub>,d<sub>2</sub>)` | ||
|
||
[Cauchy](https://en.wikipedia.org/wiki/Cauchy_distribution) | ||
`=cauchy(x<sub>0</sub>,γ)` | ||
|
||
[Chi-squared](https://en.wikipedia.org/wiki/Chi-squared_distribution) | ||
`=chisquare(k)` | ||
|
||
[Exponential](https://en.wikipedia.org/wiki/Exponential_distribution) | ||
`=exponential(λ)` | ||
|
||
[Inverse-gamma](https://en.wikipedia.org/wiki/Inverse-gamma_distribution) | ||
`=invgamma(α, β)` | ||
|
||
[Gamma](https://en.wikipedia.org/wiki/Gamma_distribution) | ||
`=gamma(k, θ)` | ||
|
||
[Lognormal](https://en.wikipedia.org/wiki/Lognormal_distribution) | ||
`=lognormal(μ, σ)` | ||
|
||
[Normal](https://en.wikipedia.org/wiki/Normal_distribution) | ||
`=normal(μ, σ)` | ||
|
||
[Student's T](https://en.wikipedia.org/wiki/Student%27s_t-distribution) | ||
`=studentt(ν)` | ||
|
||
|
||
[Weibull](https://en.wikipedia.org/wiki/Weibull_distribution) | ||
`=weibull(λ,k)` | ||
|
||
|
||
[Uniform (continuous)](https://en.wikipedia.org/wiki/Uniform_distribution_(continuous)) | ||
`=uniform(a,b)` | ||
|
||
|
||
[Bernoulli](https://en.wikipedia.org/wiki/Bernoulli_distribution) | ||
`=bernoulli(p), =test(p)` | ||
|
||
|
||
[Binomial](https://en.wikipedia.org/wiki/Binomial_distribution) | ||
`=binomial(n,p)` | ||
|
||
[Negative Binomial](https://en.wikipedia.org/wiki/Negative_binomial_distribution) | ||
`=negBinomial(r,p)` | ||
|
||
|
||
[Poisson](https://en.wikipedia.org/wiki/Poisson_distribution) | ||
`=poisson(λ)` | ||
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](https://en.wikipedia.org/wiki/Beta_distribution) | Estimating Proporitions or Percentages | `=beta`$$(\alpha, \beta)$$ | | ||
| [Central F](https://en.wikipedia.org/wiki/F-distribution) | Testing the Variance of Observed Samples | `=centralF`$$(d_1, d_2)$$ | | ||
| [Cauchy](https://en.wikipedia.org/wiki/Cauchy_distribution) | The x-intercept of a ray with uniformly distributed angle | `=cauchy`$$(x_0, \gamma)$$ | | ||
| [Chi-squared](https://en.wikipedia.org/wiki/Chi-squared_distribution) | The sum of the squares of normal random variables | `=chisquare`$$(k)$$ | | ||
| [Exponential](https://en.wikipedia.org/wiki/Exponential_distribution) | The waiting time until the occurence of a rare event with a specified rate. | `=exponential`$$(\lambda)$$ | | ||
| [Gamma](https://en.wikipedia.org/wiki/Gamma_distribution) | A generalization of the sum of exponential random variables | `=gamma`$$(k, \theta)$$ | | ||
| [Inverse-gamma](https://en.wikipedia.org/wiki/Inverse-gamma_distribution) | The reciprocal of a gamma random variable | `=invgamma`$$(\alpha, \beta)$$ | | ||
| [Lognormal](https://en.wikipedia.org/wiki/Lognormal_distribution) | The product of many positive, independent random variables | `=lognormal`$$(\mu, \sigma)$$ | | ||
| [Normal](https://en.wikipedia.org/wiki/Normal_distribution) | The sum of many independent random variables | `=normal`$$(\mu, \sigma)$$ | | ||
| [Student's T](https://en.wikipedia.org/wiki/Student%27s_t-distribution) | An estimator for the difference between the true mean and the mean of N independent samples of a random variable, for small N. | `=studentt`$$(\nu)$$ | | ||
| [Weibull](https://en.wikipedia.org/wiki/Weibull_distribution) | The lifetime of a component for which failure rate is proportional to time | `=weibull`$$(\lambda, 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](https://en.wikipedia.org/wiki/Bernoulli_distribution) | The value 1 (success) with probability $$p$$, and 0 (failure) otherwise. Used for accounting for discrete trials. | `=bernoulli`$$(p)$$, `=test`$$(p)$$ | | ||
| [Binomial](https://en.wikipedia.org/wiki/Binomial_distribution) | The sum of $$n$$ independent Bernoulli distributions with parameter $$p$$ | `=binomial`$$(n,p)$$ | | ||
| [Negative Binomial](https://en.wikipedia.org/wiki/Negative_binomial_distribution) | The number of success before $$r$$ failures is reached in a series of Bernoulli trials with parameter $$p$$ | `=negBinomial`$$(r,p)$$ | | ||
| [Poisson](https://en.wikipedia.org/wiki/Poisson_distribution) | The number of events occurring in a fixed interval, with known average rate $$\lambda$$, if events occur independently. | `=poisson`$$(\lambda)$$ | |
Oops, something went wrong.