I have been using Shapelets recently for my work (mostly the dataapp) and I was wondering how we could use the matrix profile pattern recognition in the dataap for my time series?
If anyone can help me on this, that would be appreciated!
I have been using Shapelets recently for my work (mostly the dataapp) and I was wondering how we could use the matrix profile pattern recognition in the dataap for my time series?
If anyone can help me on this, that would be appreciated!
Copyright © 2021 Jogjafile Inc.
For using anomaly detection on the data you need to use the stumpy library and then create a function that will be on top of you time series. Here's an example of a stumpy function:
This function takes a Pandas time series
ts
, a window sizewindowSize
, and a number of top anomaliestop_k
as input. It then uses thestumpy.stump()
function to compute the matrix profile for the time series. The function then identifies the indices of the top k discords in the matrix profile and creates a list ofView
objects representing the start and end times of each anomaly. Finally, the function returns aLineChart
object containing the original time series data and visualizations of the identified anomalies.You can call this function in your data app to quickly identify and visualize anomalies patterns in your time series data.
you can look at your documentation https://shapelets.io/doc/ https://github.com/shapelets/shapelets-demo