From f08bde0e6faa7f97485bc4f20b7845e2b30118d4 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Sat, 20 Sep 2014 09:26:49 +0100 Subject: [PATCH] Added Smooth node to analysis --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 08deb4d5..062d05f9 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ A collection of nodes for [Node-RED](http://nodered.org). See below for a list. + + ## Installation Many of these nodes are available as an npm package. See the respective README.md for the npm package name. @@ -49,6 +51,8 @@ Copyright 2013 IBM Corp. under [the Apache 2.0 license](LICENSE). ### Analysis +**[17-smooth](analysis/smooth)** - A simple node to provide various functions across several previous values, including max, min, mean, high and low pass filters. + **[72-wordpos](analysis/wordpos)** - Analyses the payload and classifies the part-of-speech of each word. The resulting message has msg.pos added with the results. A word may appear in multiple categories (eg, 'great' is both a noun and an adjective). **[74-swearfilter](analysis/swearfilter)** - Analyses the payload and tries to filter out any messages containing bad swear words. This only operates on payloads of type string. Everything else is blocked.