Readit News logoReadit News
dang · 6 months ago
Related:

Show HN: Augurs, a time series toolkit for Rust - https://news.ycombinator.com/item?id=42184386 - Nov 2024 (1 comment)

zachwill · 6 months ago
As someone coming from the Python data science / Jupyter side: holy crap this is lightning fast. Kudos! Very impressive work.
atdt · 6 months ago
For someone new to time series analysis, how did you choose these particular algorithms? Are they standard in the field, or more of a personal selection?
sd2k · 6 months ago
Most of the algorithms in augurs were chosen to solve problems we've had at Grafana, which tend to require a solution that doesn't require tweaking too many parameters and deals with higher frequency series than many other time series algorithms are designed to deal with. For example, the DBSCAN clustering algorithm works without having to choose the number of clusters, and MSTL/Prophet work with multiple seasonalities and sub-daily data.

The other criteria is that they needed to be fast and cheap, which ruled out many of the deep learning/neural net based models, although I'd still like to try some foundation models using Burn or some other Rust deep learning framework!

ayhanfuat · 6 months ago
Did you consider matrix profile as well?
ekianjo · 6 months ago
entirely depends on the use case. If you want to do prediction, decomposition, classification, you have many different choices available.
jan_Inkepa · 6 months ago
Is there any way to zoom out of the graphs once you've zoomed in by clicking and dragging?
dygd · 6 months ago
Double-click will reset the zoom
esafak · 6 months ago
Could this be used for outlier detection in Grafana or the like?
sd2k · 6 months ago
Yes, in fact this is exactly what it was written for! If you're writing a Grafana app plugin (using Grafana Scenes, a library to help write dashboard-like experiences in Grafana apps) you can use Scenes ML to add outlier detection, forecasting or changepoint detection pretty easily: https://grafana.com/developers/scenes/scenes-ml/outlier-dete....
whatevermom · 6 months ago
Thanks for sharing
sammcgrail · 6 months ago
Nice uplot