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

Calculating anomaly score for multivariate data set. #33

Open
Lingaselvan opened this issue Oct 12, 2017 · 1 comment
Open

Calculating anomaly score for multivariate data set. #33

Lingaselvan opened this issue Oct 12, 2017 · 1 comment

Comments

@Lingaselvan
Copy link

I have been using Luminol to calculate anomaly scores for a univariate data sets(Timestamp & Value) and getting good results. Now, I want to move into multivariate data sets(Timestamp & Value 1 & Value 2 & .... & Value N) and detect a single anomaly score based upon all values. I finding hard on how to proceed with this problem statement. Is there a way I can apply Luminol to this problem or could you suggest me a way on how to proceed?

Thank you.

@lionsq
Copy link

lionsq commented Oct 13, 2017

I don't think Luminol support multivariate. I have checked the data structure of TimeSeries supported by this module.

In the initialization code of the TimeSeries class, it is defined as follows.
def init(self, series):
self.timestamps = []
self.values = []
.....
self.values.append(float(series[ts]))
clearly the values is only an array with uni-variate time series

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants