Class XPSFloat64Stats
The data statistics of a series of FLOAT64 values.
Implements
Inherited Members
Namespace: Google.Apis.CloudNaturalLanguage.v1.Data
Assembly: Google.Apis.CloudNaturalLanguage.v1.dll
Syntax
public class XPSFloat64Stats : IDirectResponseSchema
Properties
CommonStats
Declaration
[JsonProperty("commonStats")]
public virtual XPSCommonStats CommonStats { get; set; }
Property Value
| Type | Description |
|---|---|
| XPSCommonStats |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
HistogramBuckets
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".
Declaration
[JsonProperty("histogramBuckets")]
public virtual IList<XPSFloat64StatsHistogramBucket> HistogramBuckets { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<XPSFloat64StatsHistogramBucket> |
Mean
The mean of the series.
Declaration
[JsonProperty("mean")]
public virtual double? Mean { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |
Quantiles
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.
Declaration
[JsonProperty("quantiles")]
public virtual IList<double?> Quantiles { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<double?> |
StandardDeviation
The standard deviation of the series.
Declaration
[JsonProperty("standardDeviation")]
public virtual double? StandardDeviation { get; set; }
Property Value
| Type | Description |
|---|---|
| double? |