Class HistogramChartData (0.1.6)

HistogramChartData(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A Histogram Chart shows a distribution of values into buckets, showing a count of values which fall into a bucket.

Attribute

NameDescription
buckets MutableSequence[google.cloud.migrationcenter_v1.types.ReportSummary.HistogramChartData.Bucket]
Buckets in the histogram. There will be n+1 buckets matching n lower bounds in the request. The first bucket will be from -infinity to the first bound. Subsequent buckets will be between one bound and the next. The final bucket will be from the final bound to infinity.

Classes

Bucket

Bucket(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A histogram bucket with a lower and upper bound, and a count of items with a field value between those bounds. The lower bound is inclusive and the upper bound is exclusive. Lower bound may be -infinity and upper bound may be infinity.