You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error in formula 29, linear correlation, noted in formulas.py. The Scipy.stats module implementation of pearson r is going to be used instead: 80ff7da#diff-cb33a52a1b5551c0fa2f0477a49de96b
import numpy as np
import math
import scipy.stats
# Formula 29, Linear Correlation
# Acknowledgements: Error in formula in source article brought to my attention by S. Mamont.
# Use scipy.stats.pearsonr
# scipy.stats.pearsonr(x, y)
# https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.pearsonr.html```
error brought to my attention by S. Mamont for formula 29, linear correlation:
The text was updated successfully, but these errors were encountered: