Created
October 13, 2018 18:06
-
-
Save joaofig/a604974726c9dd23e19179a322086128 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def calculate_r2(self, x, y): | |
| y_hat = self.calculate_y_hat(x, y) | |
| r2 = self.calculate_determination(y, y_hat) | |
| return r2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment