DatasetDistributionDistributionBucket

@Serializable
data class DatasetDistributionDistributionBucket(val count: Long? = null, val left: Double? = null, val right: Double? = null)

Dataset bucket used to create a histogram for the distribution given a population of values. This data type is not supported in Gemini API.

Constructors

Link copied to clipboard
constructor(count: Long? = null, left: Double? = null, right: Double? = null)

Properties

Link copied to clipboard
val count: Long? = null

Output only. Number of values in the bucket.

Link copied to clipboard
val left: Double? = null

Output only. Left bound of the bucket.

Link copied to clipboard
val right: Double? = null

Output only. Right bound of the bucket.