Interface AnalyzeDataResultNamespace

ArrayUtils

Represents the result of data analysis, providing various statistical measures and transformations.

AnalyzeDataResult

Hierarchy

  • AnalyzeDataResult

Properties

max: number

The maximum value in the data, representing the highest recorded value.

mean: number
median: number

The median value of the data, representing the middle value.

min: number

The minimum value in the data, representing the lowest recorded value.

normalized: number[]

The data normalized to the range [0, 1], for comparative analysis.

outliers: number[]

Any outliers found in the data, indicating unusual observations.

shuffled: number[]

The data shuffled randomly, useful for randomization needs.

sorted: number[]

The data sorted in ascending order, for better visualization.

standardDeviation: number

The standard deviation of the data, representing data dispersion.

sum: number

The sum of all values in the data, useful for total accumulation.

Generated using TypeDoc