Last active
November 14, 2024 12:43
-
-
Save jaimeide/a9cba18192ee904307298bd110c28b14 to your computer and use it in GitHub Desktop.
Python implementation of the Detrended Partial Cross-Correlation Analysis (DPCCA) coefficient
Hi Oscar, John and dokato. Thanks for all the comments!
Apologies for the typo. In fact, I missed the line "xx = np.cumsum(cdata,axis=0)" in the final function.
I've now included it in the edited version.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey @johncwok , shouldn't that be called on summulative sum instead?
EDIT: oh no sorry, you simply miss this line in the function:
xx = np.cumsum(cdata,axis=0)