Interface DatasetDistributionOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DatasetDistribution,DatasetDistribution.Builder
@Generated
public interface DatasetDistributionOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetBuckets(int index) Output only.intOutput only.Output only.getBucketsOrBuilder(int index) Output only.Output only.doublegetMax()Output only.doublegetMean()Output only.doubleOutput only.doublegetMin()Output only.doublegetP5()Output only.doublegetP95()Output only.doublegetSum()Output only.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getSum
double getSum()Output only. Sum of a given population of values.
double sum = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The sum.
-
getMin
double getMin()Output only. The minimum of the population values.
double min = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The min.
-
getMax
double getMax()Output only. The maximum of the population values.
double max = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The max.
-
getMean
double getMean()Output only. The arithmetic mean of the values in the population.
double mean = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The mean.
-
getMedian
double getMedian()Output only. The median of the values in the population.
double median = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The median.
-
getP5
double getP5()Output only. The 5th percentile of the values in the population.
double p5 = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The p5.
-
getP95
double getP95()Output only. The 95th percentile of the values in the population.
double p95 = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The p95.
-
getBucketsList
List<DatasetDistribution.DistributionBucket> getBucketsList()Output only. Defines the histogram bucket.
repeated .google.cloud.aiplatform.v1beta1.DatasetDistribution.DistributionBucket buckets = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; -
getBuckets
Output only. Defines the histogram bucket.
repeated .google.cloud.aiplatform.v1beta1.DatasetDistribution.DistributionBucket buckets = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; -
getBucketsCount
int getBucketsCount()Output only. Defines the histogram bucket.
repeated .google.cloud.aiplatform.v1beta1.DatasetDistribution.DistributionBucket buckets = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; -
getBucketsOrBuilderList
List<? extends DatasetDistribution.DistributionBucketOrBuilder> getBucketsOrBuilderList()Output only. Defines the histogram bucket.
repeated .google.cloud.aiplatform.v1beta1.DatasetDistribution.DistributionBucket buckets = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; -
getBucketsOrBuilder
Output only. Defines the histogram bucket.
repeated .google.cloud.aiplatform.v1beta1.DatasetDistribution.DistributionBucket buckets = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
-