Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/53seven/d3-nelson-rules
d3 utility to apply nelsons rules of process control to a set of data
https://github.com/53seven/d3-nelson-rules
Last synced: 2 months ago
JSON representation
d3 utility to apply nelsons rules of process control to a set of data
- Host: GitHub
- URL: https://github.com/53seven/d3-nelson-rules
- Owner: 53seven
- License: mit
- Created: 2015-12-12T04:03:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-02T18:12:56.000Z (over 4 years ago)
- Last Synced: 2024-10-26T18:45:24.130Z (3 months ago)
- Language: JavaScript
- Size: 143 KB
- Stars: 16
- Watchers: 5
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-d3 - d3-nelson-rules - Apply nelsons rules of process control to a set of data (Utils)
- awesome-d3 - d3-nelson-rules - Apply nelsons rules of process control to a set of data (Utils)
- awesome-d3 - d3-nelson-rules - Apply nelsons rules of process control to a set of data (Utils)
README
# d3-nelson-rules
[![Greenkeeper badge](https://badges.greenkeeper.io/53seven/d3-nelson-rules.svg)](https://greenkeeper.io/)
[![build status](https://travis-ci.org/53seven/d3-nelson-rules.svg)](https://travis-ci.org/53seven/d3-nelson-rules)
d3 utility to apply [nelsons rules](https://en.wikipedia.org/wiki/Nelson_rules) of process control to a set of data.
## Installing
If you use NPM, `npm install d3-nelson-rules`. Otherwise, download the [latest release](https://github.com/53seven/d3-nelson-rules/releases/latest).
## API Reference
```js
var data = [{
name: 'foo',
val: 3
} ...];var nelson = d3.d3_nelson_rules()
.std(5)
.mean(1)
.value(function(d) { return d.val; });svg.selectAll('rect')
.data(data)
.enter()
...
.call(nelson);
```License
---MIT