Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

XPSFloat64Stats

import type { XPSFloat64Stats } from "https://googleapis.deno.dev/v1/language:v2.ts";

The data statistics of a series of FLOAT64 values.

interface XPSFloat64Stats {
commonStats?: XPSCommonStats;
histogramBuckets?: XPSFloat64StatsHistogramBucket[];
mean?: number;
quantiles?: number[];
standardDeviation?: number;
}

§Properties

§
commonStats?: XPSCommonStats
[src]
§

Histogram buckets of the data series. Sorted by the min value of the bucket, ascendingly, and the number of the buckets is dynamically generated. The buckets are non-overlapping and completely cover whole FLOAT64 range with min of first bucket being "-Infinity", and max of the last one being "Infinity".

§
mean?: number
[src]

The mean of the series.

§
quantiles?: number[]
[src]

Ordered from 0 to k k-quantile values of the data series of n values. The value at index i is, approximately, the i*n/k-th smallest value in the series; for i = 0 and i = k these are, respectively, the min and max values.

§
standardDeviation?: number
[src]

The standard deviation of the series.