Source code for featuretools.primitives.standard.transform.exponential.exponential_weighted_std
from woodwork.column_schema import ColumnSchema
from woodwork.logical_types import Double
from featuretools.primitives.base import TransformPrimitive
[docs]class ExponentialWeightedSTD(TransformPrimitive):
"""Computes the exponentially weighted moving standard deviation for
a series of numbers
Description:
Returns the exponentially weighted moving standard deviation for a
series of numbers. Exactly one of center of mass (com), span,
half-life, and alpha must be provided. Missing values can be ignored
when calculating weights by setting 'ignore_na' to True.
Args:
com (float): Specify decay in terms of center of mass for com >= 0.
Default is None.
span (float): Specify decay in terms of span for span >= 1.
Default is None.
halflife (float): Specify decay in terms of half-life for halflife > 0.
Default is None.
alpha (float): Specify smoothing factor alpha directly. Alpha should be
greater than 0 and less than or equal to 1. Default is None.
ignore_na (bool): Ignore missing values when calculating weights.
Default is False.
Examples:
>>> exponential_weighted_std = ExponentialWeightedSTD(com=0.5)
>>> exponential_weighted_std([1, 2, 3, 7]).tolist()
[nan, 0.7071067811865475, 0.9198662110077998, 2.9852200022005855]
Missing values can be ignored
>>> ewmstd_ignorena = ExponentialWeightedSTD(com=0.5, ignore_na=True)
>>> ewmstd_ignorena([1, 2, 3, None, 7]).tolist()
[nan, 0.7071067811865475, 0.9198662110077998, 0.9198662110077998, 2.9852200022005855]
"""
name = "exponential_weighted_std"
input_types = [ColumnSchema(semantic_tags={"numeric"})]
return_type = ColumnSchema(logical_type=Double, semantic_tags={"numeric"})
uses_full_dataframe = True
[docs] def __init__(self, com=None, span=None, halflife=None, alpha=None, ignore_na=False):
if all(x is None for x in [com, span, halflife, alpha]):
com = 0.5
self.com = com
self.span = span
self.halflife = halflife
self.alpha = alpha
self.ignore_na = ignore_na
def get_function(self):
def exponential_weighted_std(x):
return x.ewm(
com=self.com,
span=self.span,
halflife=self.halflife,
alpha=self.alpha,
ignore_na=self.ignore_na,
).std()
return exponential_weighted_std