This format is based on Keep A Changelog.
Data.Series.Continuous
:- Expose module
Data.Series
:- Expose
findLastTimeBefore
- Expose
Data.Series
:- Fix
latest
internal function which would have caused a bug previously.
- Fix
Data.Series.Internal
:Series
: a discrete time series consisting in a collection ofDataPoint
s.DataPoint
: a data point in aSeries
.isEmpty
: determine whether aSeries
is empty.emptySeries
: get a emptySeries
.
Data.Series
:series
: create aSeries
from an association list.lookup
: get the value at a given time in theSeries
.(!?)
: infix version oflookup
.slice
: slice a series from one time to another.size
: get the number ofDataPoint
s in aSeries
.singleton
: create aSeries
with only the givenDataPoint
.merge
: merge twoSeries
, preserving order and duplicates.resampleSAH
: make aSeries
containing the given times, with the last value before each time in the givenSeries
.bounds
: get the lower and upper bounds of aSeries
.pointwiseZipWith
:nub
: remove duplicate times in aSeries
, always keeps the firstDataPoint
at a given time.nubWith
: remove duplicate times in aSeries
, criteria for whichDataPoint
at a given time is kept is passed as a higher order function.values
: extract the values from aSeries
, dropping the times.times
: extract the times from aSeries
, dropping the values.