Skip to content

Commit

Permalink
revert init_val skewt
Browse files Browse the repository at this point in the history
  • Loading branch information
aloctavodia committed Sep 24, 2024
1 parent 7744d38 commit 592e178
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/get_cover_gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
rng = np.random.default_rng(247)

init_vals["Hurdle"] = None
init_vals["SkewStudentT"] = {"mu": 0.0, "sigma": 1, "a": 2.5, "b": 1.5}
for name, params in init_vals.items():
color = f"C{rng.integers(0, 4)}"
_, ax = plt.subplots(figsize=(3.5, 2.3))
Expand Down
2 changes: 1 addition & 1 deletion preliz/internal/distribution_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def process_extra(input_string):
"Pareto": {"alpha": 5, "m": 2.0},
"Rice": {"nu": 2.0, "sigma": 1.0},
"SkewNormal": {"mu": 0.0, "sigma": 1, "alpha": 6.0},
"SkewStudentT": {"mu": 0.0, "sigma": 1, "a": 2.5, "b": 1.5},
"SkewStudentT": {"mu": 0.0, "sigma": 1, "a": 2, "b": 2},
"StudentT": {"nu": 7, "mu": 0.0, "sigma": 1},
"Triangular": {"lower": -2, "c": 0.0, "upper": 2.0},
"TruncatedNormal": {"mu": 0.0, "sigma": 1, "lower": -2, "upper": 3.0},
Expand Down

0 comments on commit 592e178

Please sign in to comment.