Transformations: Add regression analysis transformation (#78457)

* regression analysis first dragt

* Swap to better regression libraries

* fix name

* Interpolate x points instead of using source x points

* clean up ui and add feature toggle

* fix merge error

* change to loop for finding min max, rename resolution

* Add docs

* add docs and tests

* change name to regression analysis

* update docs

* Fix editor labels

* add regression images

* fix docs
This commit is contained in:
Oscar Kilhed
2023-11-24 15:49:16 +01:00
committed by GitHub
parent 7fa73d2b21
commit ab982e7bd3
17 changed files with 714 additions and 0 deletions

View File

@@ -39,4 +39,5 @@ export enum DataTransformerID {
timeSeriesTable = 'timeSeriesTable',
formatTime = 'formatTime',
formatString = 'formatString',
regression = 'regression',
}

View File

@@ -164,4 +164,5 @@ export interface FeatureToggles {
alertingSimplifiedRouting?: boolean;
logRowsPopoverMenu?: boolean;
pluginsSkipHostEnvVars?: boolean;
regressionTransformation?: boolean;
}