Package 'RcppStreams'

Title: 'Rcpp' Integration of the 'Streamulus' 'DSEL' for Stream Processing
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.
Authors: Dirk Eddelbuettel
Maintainer: Dirk Eddelbuettel <[email protected]>
License: GPL (>= 3)
Version: 0.1.3.1
Built: 2024-08-16 02:30:10 UTC
Source: https://github.com/eddelbuettel/rcppstreams

Help Index


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)