Skip to content

Commit

Permalink
Update dummy.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiraly committed Aug 27, 2024
1 parent e360e73 commit dcc8073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skpro/regression/dummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _fit(self, X, y):
self._y = y
self._y_columns = y.columns
self._mu = np.mean(y.values)
self._sigma = np.var(y.values)
self._sigma = np.std(y.values)
if self.strategy == "empirical":
self.distribution_ = Empirical(y)
if self.strategy == "normal":
Expand Down

0 comments on commit dcc8073

Please sign in to comment.