All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.cdm.base.math.AveragingCalculationMethodEnum.py Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
# pylint: disable=missing-module-docstring, invalid-name, line-too-long
from enum import Enum

__all__ = ['AveragingCalculationMethodEnum']

class AveragingCalculationMethodEnum(Enum):
    """
    Specifies enumerations for the type of averaging calculation.
    """
    ARITHMETIC = "Arithmetic"
    """
    Refers to the calculation of an average by taking the sum of observations divided by the count of observations.
    """
    GEOMETRIC = "Geometric"
    """
    Refers to the calculation of an average by taking the nth root of the product of n observations.
    """
    HARMONIC = "Harmonic"
    """
    Refers to the calculation of an average by taking the reciprocal of the arithmetic mean of the reciprocals of the observations.
    """




© 2015 - 2025 Weber Informatics LLC | Privacy Policy