node-red-nodes/function/smooth
Dave Conway-Jones 316a2fd272 Re-lint a load of nodes 2017-01-29 17:45:44 +00:00
..
icons Move Smooth node to function folder to better reflect it's category. 2014-09-21 11:14:57 +01:00
17-smooth.html Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00
17-smooth.js Re-lint a load of nodes 2017-01-29 17:45:44 +00:00
LICENSE Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00
README.md Fix typo in node-red-node-smooth (#205) 2016-05-02 21:55:18 +01:00
package.json Update licenses and packages for all nodes 2016-11-06 20:26:19 +00:00

README.md

node-red-node-smooth

A Node-RED node that provides several simple smoothing algorithms for incoming data values. These include

  • Minimum
  • Maximum
  • Mean
  • Standard Deviation
  • High Pass Smoothing
  • Low Pass Smoothing

Install

Run the following command in your Node-RED user directory - typically ~/.node-red

npm install node-red-node-smooth

Usage

A simple node to provide various functions across several previous values, including max, min, mean, standard deviation, high and low pass filters.

Max, Min, Mean and Standard Deviation work over a rolling window, based on a specified number of previous values.

The High and Low pass filters use a smoothing factor. The higher the number the more the smoothing. E.g. a value of 10 is similar to an α of 0.1. It is analogous to an RC time constant - but there is no time component to this as the code is based on events arriving.

Note: This node only operates on numbers. Anything else will try to be made into a number and rejected if that fails.