Graph/chart trends analysis
Free Tools
1
Posts
1
Posters
1
Views
1
Watching
-
Hi I am looking for any (preferably C#) 3rd party library or framework for chart analysis. What I need: I have a sequance of pairs (double value; time stamp). I need to find ascending/descending/constant trends out of my sequance. Of cause with thresholds assumptions... Example: Input: Threshold 0.02, Sequance 0 1.1 2.5 3.6 3.61 3.62 3.6 2.8 2.5 2.2 2.0 1.99 2.01 Output: Ascending {0 1.1 2.5 3.6}, Constant {3.6 3.61 3.62 3.6}, Descending {3.6 2.8 2.5 2.2 2.0}, Constant {2.0 1.99 2.01} The example is just to catch the idea of what I need. I would appreciate for any help :) Thank you!