gcp_bigquery_client/model/cluster_info.rs
1//! Information about a single cluster for clustering model.
2
3#[derive(Debug, Default, Clone, Serialize, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct ClusterInfo {
6 /// Cluster size, the total number of points assigned to the cluster.
7 pub cluster_size: Option<i64>,
8 /// Centroid id.
9 pub centroid_id: Option<i64>,
10 /// Cluster radius, the average distance from centroid to each point assigned to the cluster.
11 pub cluster_radius: Option<f64>,
12}