1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

Added Smooth node to analysis

This commit is contained in:
Dave Conway-Jones 2014-09-20 09:26:49 +01:00
parent 328c04e390
commit f08bde0e6f

View File

@ -2,6 +2,8 @@
A collection of nodes for [Node-RED](http://nodered.org). See below for a list. A collection of nodes for [Node-RED](http://nodered.org). See below for a list.
<img src="https://david-dm.org/node-red/node-red-nodes.png">
## Installation ## Installation
Many of these nodes are available as an npm package. See the respective README.md for the npm package name. 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 ### 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). **[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. **[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.