Source code for featuretools.primitives.standard.transform.binary.modulo_numeric_scalar
from woodwork.column_schema import ColumnSchema
from featuretools.primitives.base.transform_primitive_base import TransformPrimitive
[docs]class ModuloNumericScalar(TransformPrimitive):
    """Computes the modulo of each element in the list by a given scalar.
    Description:
        Given a list of numeric values and a scalar, return
        the modulo, or remainder of each value after being
        divided by the scalar.
    Examples:
        >>> modulo_numeric_scalar = ModuloNumericScalar(value=2)
        >>> modulo_numeric_scalar([3, 1, 2]).tolist()
        [1, 1, 0]
    """
    name = "modulo_numeric_scalar"
    input_types = [ColumnSchema(semantic_tags={"numeric"})]
    return_type = ColumnSchema(semantic_tags={"numeric"})
[docs]    def __init__(self, value=1):
        self.value = value
        self.description_template = "the remainder after dividing {{}} by {}".format(
            self.value,
        ) 
    def get_function(self):
        def modulo_scalar(vals):
            return vals % self.value
        return modulo_scalar
    def generate_name(self, base_feature_names):
        return "%s %% %s" % (base_feature_names[0], str(self.value))