-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nonlinear correlation calculation #15
Comments
@zhuyingqin The underlying principle is to perform segmentation, and compute the segment-wise linear correlations to estimate an overall nonlinear correlation. The v2.0 pushed recently performs the segmentation using a dynamic programming for a more computationally efficient and theoretically robust approach. |
What is the calculation principle of nonlinear correlation? |
How to use piecewise linear correlation to estimate the overall nonlinear correlation? |
We will be publishing the nlcor paper in a month describing the approach in detail. |
Please notify me after the paper is published |
In the case of computing a "total adjusted" correlation, Fisher's transformation may be useful. To combine the p-values you may want to use either fisher's method, stouffer's method, or a related approach, see: https://en.wikipedia.org/wiki/Fisher%27s_method . Your current approach overly penalizes the significance when taking more splits. For example, three p-values of 0.05 should have a "total adjusted p-value" less than 0.05, but your current approach ( |
@brshallo thank you for the note! We will look into this. |
@cran2367 you are welcome. I stumbled onto your package while toying with brshallo/piececor that has a lot of overlap in thinking. The methods I mention above are what I used there. |
Netcor calculates the data segment to find the cor, and the absolute value is added and then averaged,Is this understanding correct?
Take the maximum value of cor.estimate returned by Netcor for different subdivisions,Why is it a non-linear correlation?
What is the principle of your nonlinear correlation calculation?
The text was updated successfully, but these errors were encountered: