How do you measure the strength of a nonlinear relationship?
The correlation coefficient r measures the strength of a linear relationship between ordered pairs (xi,yi). Suppose you are testing the strength of a non-linear relationship. How would you modify the formula for the calculation of r?
To save you time, here is one representation of the formula for r:
r = [ SUM(xi - xbar)(yi - ybar) ] / [ SQRT(SUM(xi - xbar)^2) * SQRT(SUM(yi - ybar)^2) ].
Or is there an entirely different way to measure this?
Thank you.