Description Usage Arguments Details Examples
View source: R/features-basic.R
Function that implements a set of common statistical features that can be run on an instance of MeterDataClass
.
1 | basicFeatures(meterData, ...)
|
meterData |
An instance of |
basicFeatures
is called by passing in an instance of a MeterDataClass, which provides the meter data in both linear series
and day-per-row matrix formats. These data structures and some associated indices and intermediate data structures are
re-used throughout this method, which tries to take advantage of the performance benefits of such re-use.
This function is often called in the context of the iterator.*
suite of functions, which can loop through large sets of
meters, calling feature functions on each.
1 2 3 4 5 6 7 8 | ## Not run:
DATA_SOURCE = TestData(n=10)
meterData = DATA_SOURCE$getMeterDataClass(DATA_SOURCE$getIds()[1])
features = basicFeatures(meterData)
names(features)
class(features)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.