diff --git a/river/stats/ewmean.py b/river/stats/ewmean.py index df3a7db14a..366e5388c2 100644 --- a/river/stats/ewmean.py +++ b/river/stats/ewmean.py @@ -12,11 +12,6 @@ class EWMean(stats.base.Univariate): fading_factor The closer `fading_factor` is to 1 the more the statistic will adapt to recent values. - Attributes - ---------- - mean : float - The running exponentially weighted mean. - Examples -------- @@ -51,7 +46,6 @@ def __init__(self, fading_factor=0.5): raise ValueError("q is not comprised between 0 and 1") self.fading_factor = fading_factor self._ewmean = _rust_stats.RsEWMean(fading_factor) - self.mean = 0 @property def name(self): diff --git a/river/stats/ewvar.py b/river/stats/ewvar.py index 6bd06c7b29..07c2fe858f 100644 --- a/river/stats/ewvar.py +++ b/river/stats/ewvar.py @@ -15,11 +15,6 @@ class EWVar(stats.base.Univariate): fading_factor The closer `fading_factor` is to 1 the more the statistic will adapt to recent values. - Attributes - ---------- - variance : float - The running exponentially weighted variance. - Examples --------