Source code for featuretools.primitives.standard.aggregation.std
import numpy as np
from woodwork.column_schema import ColumnSchema
from featuretools.primitives.base.aggregation_primitive_base import AggregationPrimitive
[docs]class Std(AggregationPrimitive):
    """Computes the dispersion relative to the mean value, ignoring `NaN`.
    Examples:
        >>> std = Std()
        >>> round(std([1, 2, 3, 4, 5, None]), 3)
        1.414
    """
    name = "std"
    input_types = [ColumnSchema(semantic_tags={"numeric"})]
    return_type = ColumnSchema(semantic_tags={"numeric"})
    stack_on_self = False
    description_template = "the standard deviation of {}"
    def get_function(self):
        return np.std