Skip to content

Commit 3f2c1a2

Browse files
committed
typo in SLR corrected
1 parent 8d7a1f9 commit 3f2c1a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bioinfokit/analys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ def lin_reg(self, df="dataframe", y=None, x=None):
464464
print("\nRegression Summary:")
465465
print(tabulate([["Dependent variables", x], ["Independent variables", y],
466466
["Coefficient of determination (r-squared)", r_sq], ["Adjusted r-squared", r_sq_adj],
467-
["Root Mean Square Error (RMSE)", rmse],
467+
["Root Mean Square Error (RMSE)", rmse],
468468
["Mean of Y", round(np.mean(self.Y), 4)], ["Residual standard error", round(np.sqrt(sigma_sq_hat), 4)],
469469
["No. of Observations", n]], "\n"))
470470
print("\nRegression Coefficients:\n")

0 commit comments

Comments
 (0)