View Source GoogleApi.Language.V1.Model.XPSFloat64Stats (google_api_language v0.14.0)
The data statistics of a series of FLOAT64 values.
Attributes
-
commonStats
(type:GoogleApi.Language.V1.Model.XPSCommonStats.t
, default:nil
) - -
histogramBuckets
(type:list(GoogleApi.Language.V1.Model.XPSFloat64StatsHistogramBucket.t)
, default:nil
) - 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
(type:float()
, default:nil
) - The mean of the series. -
quantiles
(type:list(float())
, default:nil
) - 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
(type:float()
, default:nil
) - The standard deviation of the series.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Language.V1.Model.XPSFloat64Stats{ commonStats: GoogleApi.Language.V1.Model.XPSCommonStats.t() | nil, histogramBuckets: [GoogleApi.Language.V1.Model.XPSFloat64StatsHistogramBucket.t()] | nil, mean: float() | nil, quantiles: [float()] | nil, standardDeviation: float() | nil }
Functions
Unwrap a decoded JSON object into its complex fields.