Commit 80ba9072 authored by Peter Eastman's avatar Peter Eastman
Browse files

Fixed docstring

parent 0f972098
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ def pearsonr(y: np.ndarray, y_pred: np.ndarray) -> float:
  Returns
  -------
  float
    The Pearson-R^2 score.
    The Pearson correlation coefficient.
  """
  return scipy.stats.pearsonr(y, y_pred)[0]