Skip to content

Instantly share code, notes, and snippets.

@joaofig
Created October 13, 2018 18:06
Show Gist options
  • Select an option

  • Save joaofig/a604974726c9dd23e19179a322086128 to your computer and use it in GitHub Desktop.

Select an option

Save joaofig/a604974726c9dd23e19179a322086128 to your computer and use it in GitHub Desktop.
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