Package Exports
- downsample-lttb
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (downsample-lttb) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
downsample-lttb
Largest Triangle Three Buckets downsample algorithm by Sveinn Steinarsson reshaped into a node.js module.
This is useful for downsampling large dataseries in order to be able to plot a representative chart shape with a manageable amount of data points.
#Instructions
Install with
npm install git+https://github.com/pingec/downsample-lttb.gitUsage example
var downsampler = require("downsample-lttb");
//provide a series as an array of [x,y] pairs
var dummyDataSeries = [[1,2],[2,2],[3,3],[4,3],[5,6],[6,3],[7,3],[8,5],[9,4],[10,4],[11,1],[12,2]];
//pass the series and number of desired datapoints
var downsampledSeries = downsampler.processData(dummyDataSeries, 3);
console.log(downsampledSeries);
//outputs [ [ 1, 2 ], [ 5, 6 ], [ 12, 2 ] ]#Downsampled chart series examples
#### of samples: 8614 downsampled to: 500
#### of samples: 8614 downsampled to: 200
#### of samples: 8614 downsampled to: 100
#### of samples: 8614 downsampled to: 50
