Skip to content

Commit 2fa4ab1

Browse files
authored
Merge pull request #4739 from janezd/distributions-fix-legend-sigma
[FIX] Distributions widget's legend: Remove the square from sigma in normal and Rayleigh
2 parents 6935315 + 9a93973 commit 2fa4ab1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Orange/widgets/visualize/owdistributions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,11 +287,11 @@ class Warning(OWWidget.Warning):
287287

288288
Fitters = (
289289
("None", None, (), ()),
290-
("Normal", norm, ("loc", "scale"), ("μ", ²")),
290+
("Normal", norm, ("loc", "scale"), ("μ", "σ")),
291291
("Beta", beta, ("a", "b", "loc", "scale"),
292292
("α", "β", "-loc", "-scale")),
293293
("Gamma", gamma, ("a", "loc", "scale"), ("α", "β", "-loc", "-scale")),
294-
("Rayleigh", rayleigh, ("loc", "scale"), ("-loc", ²")),
294+
("Rayleigh", rayleigh, ("loc", "scale"), ("-loc", "σ")),
295295
("Pareto", pareto, ("b", "loc", "scale"), ("α", "-loc", "-scale")),
296296
("Exponential", expon, ("loc", "scale"), ("-loc", "λ")),
297297
("Kernel density", AshCurve, ("a",), ("",))

0 commit comments

Comments
 (0)