@@ -38,14 +38,12 @@ can be:
38
38
39
39
- one of the distribution *types* in the table below, for automatic fitting
40
40
using `Distributions.fit(d, r)` to a distribution whose support always
41
- lies between `r.lower` and `r.upper` (for `NumericRange` `r`) or the set
42
- of probability vectors (for `NominalRange` `r`)
41
+ lies between `r.lower` and `r.upper` (for `NumericRange` `r`)
43
42
44
43
- any vector of objects of the above form
45
44
46
45
| Range Types | Distribution Types |
47
46
|:----------------------- |:-------------------------------------------------------------------------------------------- |
48
- | `NominalRange` | `Dirichlet` |
49
47
| Bounded `NumericRange` | `Arcsine`, `Uniform`, `Biweight`, `Cosine`, `Epanechnikov`, `SymTriangularDist`, `Triweight` |
50
48
| Positive `NumericRange` | `Gamma`, `InverseGaussian`, `Poisson` |
51
49
| Any `NumericRange` | `Normal`, `Logistic`, `LogNormal`, `Cauchy`, `Gumbel`, `Laplace` |
@@ -59,7 +57,7 @@ can be:
59
57
range2 = [(range(model, :hyper1, lower=1, upper=10), Arcsine),
60
58
range(model, :hyper2, lower=2, upper=Inf, unit=1, origin=3),
61
59
(range(model, :hyper2, lower=2, upper=4), Normal(0, 3)),
62
- ( range(model, :hyper3, values=[:ball, :tree]), Dirichlet )]
60
+ range(model, :hyper3, values=[:ball, :tree])]
63
61
64
62
### Algorithm
65
63
0 commit comments