Source code for featuretools.primitives.standard.transform.binary.less_than_scalar
from woodwork.column_schema import ColumnSchema
from woodwork.logical_types import BooleanNullable
from featuretools.primitives.base.transform_primitive_base import TransformPrimitive
from featuretools.utils.gen_utils import Library
[docs]class LessThanScalar(TransformPrimitive):
    """Determines if values are less than a given scalar.
    Description:
        Given a list of values and a constant scalar, determine
        whether each of the values is less than the scalar.
        If a value is equal to the scalar, return `False`.
    Examples:
        >>> less_than_scalar = LessThanScalar(value=2)
        >>> less_than_scalar([3, 1, 2]).tolist()
        [False, True, False]
    """
    name = "less_than_scalar"
    input_types = [ColumnSchema(semantic_tags={"numeric"})]
    return_type = ColumnSchema(logical_type=BooleanNullable)
    compatibility = [Library.PANDAS, Library.DASK, Library.SPARK]
[docs]    def __init__(self, value=0):
        self.value = value
        self.description_template = "whether {{}} is less than {}".format(self.value) 
    def get_function(self):
        def less_than_scalar(vals):
            return vals < self.value
        return less_than_scalar
    def generate_name(self, base_feature_names):
        return "%s < %s" % (base_feature_names[0], str(self.value))