I have been learning about standard methods in Statistics such as the Pearson's Correlation Coefficient, Spearman's Correlation and Kendall's Tau.
My understanding of this so far is that:
Pearson Correlation Coefficient measures the linear correlation between two sets of data
Spearman's Correlation measures the "monocity" between two sets of data (e.g. do they both increase and decrease at the same time?)
Kendall's Tau measures the ordinal association between two sets of data - supposedly Kendall's Tau is similar to the Spearman Correlation, but Kendall's Tau has a more logical confidence intervals.
I had the following question - can any of these methods be used for measuring a specific form of "Non Linear Correlation" between two sets of data?
For example - suppose I want to see how strongly two sets of data are correlated relative to a "second order curve" :
Is there something that could measure the "curved correlation"?
The two ideas I came up with:
Try to use some data transformations (e.g. Log) to transform one of the variables into a more linear pattern that will make it suitable for one of the above measures
Fit a polynomial regression model (of order 2) to this data and measure the MSE
But I am not sure if either of these approaches are suitable.


