Skip to content

Commit 560628c

Browse files
committed
print unscaled mse in plot
1 parent 014d589 commit 560628c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mvBayes/mvBayes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ def plot(
11011101

11021102
# Plot Residuals on top of Y
11031103
fig.add_subplot(2, 2, 1)
1104-
mseOverall = self.getMSE(R) * Ytest.shape[1]
1104+
mseOverall = self.getMSE(R, scale=False) * Ytest.shape[1]
11051105
if not self.basisInfo.center and not self.basisInfo.scale:
11061106
legendLab = "Y"
11071107
else:

0 commit comments

Comments
 (0)