SummaryStatistics¶
-
class
oci.opsi.models.
SummaryStatistics
(**kwargs)¶ Bases:
object
Contains common summary statistics.
Methods
__init__
(**kwargs)Initializes a new SummaryStatistics object with values from keyword arguments. Attributes
average
[Required] Gets the average of this SummaryStatistics. lower_quartile
[Required] Gets the lower_quartile of this SummaryStatistics. maximum
[Required] Gets the maximum of this SummaryStatistics. median
[Required] Gets the median of this SummaryStatistics. minimum
[Required] Gets the minimum of this SummaryStatistics. upper_quartile
[Required] Gets the upper_quartile of this SummaryStatistics. -
__init__
(**kwargs)¶ Initializes a new SummaryStatistics object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - minimum (float) – The value to assign to the minimum property of this SummaryStatistics.
- maximum (float) – The value to assign to the maximum property of this SummaryStatistics.
- average (float) – The value to assign to the average property of this SummaryStatistics.
- median (float) – The value to assign to the median property of this SummaryStatistics.
- lower_quartile (float) – The value to assign to the lower_quartile property of this SummaryStatistics.
- upper_quartile (float) – The value to assign to the upper_quartile property of this SummaryStatistics.
-
average
¶ [Required] Gets the average of this SummaryStatistics. The average number in the data set.
Returns: The average of this SummaryStatistics. Return type: float
-
lower_quartile
¶ [Required] Gets the lower_quartile of this SummaryStatistics. The middle number between the smallest number and the median of the data set. It’s also known as the 25th quartile.
Returns: The lower_quartile of this SummaryStatistics. Return type: float
-
maximum
¶ [Required] Gets the maximum of this SummaryStatistics. The largest number in the data set.
Returns: The maximum of this SummaryStatistics. Return type: float
-
median
¶ [Required] Gets the median of this SummaryStatistics. The middle number in the data set.
Returns: The median of this SummaryStatistics. Return type: float
-
minimum
¶ [Required] Gets the minimum of this SummaryStatistics. The smallest number in the data set.
Returns: The minimum of this SummaryStatistics. Return type: float
-
upper_quartile
¶ [Required] Gets the upper_quartile of this SummaryStatistics. The middle number between the median and the largest number of the data set. It’s also known as the 75th quartile.
Returns: The upper_quartile of this SummaryStatistics. Return type: float
-