Skip to content

Commit

Permalink
Merge ef5c49c into d476518
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 committed Sep 17, 2020
2 parents d476518 + ef5c49c commit 9c7e05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xskillscore/core/np_deterministic.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def _rmse(a, b, weights, axis, skipna):
weights, axis=axis
)
else:
mean_squared_error = meanfunc(((a - b) ** 2), axis=axis)
mean_squared_error = meanfunc(squared_error, axis=axis)
res = np.sqrt(mean_squared_error)
return res

Expand Down

0 comments on commit 9c7e05b

Please sign in to comment.