Type: | Package |
Title: | 'Rcpp' Integration of the 'Streamulus' 'DSEL' for Stream Processing |
Version: | 0.1.4 |
Date: | 2025-01-29 |
Description: | The 'Streamulus' (template, header-only) library by Irit Katriel (at https://github.com/iritkatriel/streamulus) provides a very powerful yet convenient framework for stream processing. This package connects 'Streamulus' to R by providing both the header files and all examples. |
URL: | http://dirk.eddelbuettel.com/code/rcpp.streams.html |
BugReports: | https://github.com/eddelbuettel/rcppstreams/issues |
License: | GPL (≥ 3) |
Depends: | R (≥ 3.0.0) |
Imports: | Rcpp |
LinkingTo: | Rcpp, BH |
RoxygenNote: | 6.0.1 |
NeedsCompilation: | yes |
Packaged: | 2025-01-29 14:48:23 UTC; edd |
Author: | Dirk Eddelbuettel |
Maintainer: | Dirk Eddelbuettel <edd@debian.org> |
Repository: | CRAN |
Date/Publication: | 2025-01-29 15:00:06 UTC |
Common 'greeting' carried across several expressions
Description
This is an example function illustrating Streamulus
Usage
commonSubexpressions()
Value
An unconditional TRUE value
Author(s)
Dirk Eddelbuettel
Examples
## Not run:
commonSubexpressions()
## End(Not run)
Alert for cross of two moving averages
Description
This is an example function illustrating Streamulus
Usage
crossAlert(f1, f2)
Arguments
f1 |
Parameter for the slower exponential moving average |
f2 |
Parameter for the faster exponential moving average |
Value
An unconditional TRUE value
Author(s)
Dirk Eddelbuettel
Examples
## Not run:
crossAlert(10,20)
## End(Not run)
Print some hello messages
Description
This is an example function illustrating Streamulus
Usage
helloStream()
Value
An unconditional TRUE value
Author(s)
Dirk Eddelbuettel
Examples
## Not run:
helloStream()
## End(Not run)
Sliding window function example
Description
This is an example function illustrating Streamulus
Usage
slidingWindow()
Value
An unconditional TRUE value
Author(s)
Dirk Eddelbuettel
Examples
## Not run:
slidingWindow()
## End(Not run)