DSAggregate | R Documentation |
Abstract base classes for all DSAggregate (Data Stream Aggregator) classes to aggregate streams. DSAggreagate is a DST task.
DSAggregate(...)
## S3 method for class 'DSAggregate'
update(object, dsd, n = 1, return = c("nothing", "model"), ...)
## S3 method for class 'DSAggregate'
get_points(x, ...)
## S3 method for class 'DSAggregate'
get_weights(x, ...)
... |
Further arguments. |
dsd |
a data stream object. |
n |
the number of data points used for the update. |
return |
a character string indicating what update returns. The default is |
x , object |
a concrete implementation of |
The DSAggreagate
class cannot be instantiated, but it serve as a base
class from which other DSAggregate subclasses inherit.
Data stream operators use update.DSAggregate()
to process new data from the
DSD stream. The result of the operator can be obtained via get_points()
and get_weights()
(if available).
Michael Hahsler
Other DST:
DSC()
,
DSClassifier()
,
DSOutlier()
,
DSRegressor()
,
DST()
,
DST_SlidingWindow()
,
DST_WriteStream()
,
evaluate
,
predict()
,
stream_pipeline
,
update()
Other DSAggregate:
DSAggregate_Sample()
,
DSAggregate_Window()
DSAggregate()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.