RollingSeries class

Class providing rolling window operations for Series.

This class is returned by the rolling() method and provides various statistical operations that can be applied over a rolling window.

Constructors

RollingSeries(Series _series, int window)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
window int
final

Methods

apply(dynamic func(List<num>)) Series
Applies a custom aggregation function over the rolling window.
corr(Series other) Series
Calculates the rolling correlation with another Series.
cov(Series other) Series
Calculates the rolling covariance with another Series.
kurt({bool fisher = true}) Series
Calculates the rolling kurtosis.
max() Series
Calculates the rolling maximum.
mean() Series
Calculates the rolling mean.
median() Series
Calculates the rolling median.
min() Series
Calculates the rolling minimum.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
quantile(double q) Series
Calculates the rolling quantile.
skew() Series
Calculates the rolling skewness.
std() Series
Calculates the rolling standard deviation.
sum() Series
Calculates the rolling sum.
toString() String
A string representation of this object.
inherited
variance() Series
Calculates the rolling variance.

Operators

operator ==(Object other) bool
The equality operator.
inherited