Skip to content
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

Add correlation of data series #26

Closed
djlauk opened this issue Jan 24, 2022 · 0 comments
Closed

Add correlation of data series #26

djlauk opened this issue Jan 24, 2022 · 0 comments
Labels
enhancement New feature or request

Comments

@djlauk
Copy link
Contributor

djlauk commented Jan 24, 2022

Given two data series A(t), and B(t) as the input, create a new data series Y by correlating A and B, i.e.

# pseudocode
correlate(A, B):
  result := empty list

  for ptX in A:
    ptY := find point in B with ptY.t = ptX.t
    if no point found: continue
    point := { x = ptX.value, y = ptY.value }
    result += point

  return result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant