Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
texodus committed Jan 31, 2018
1 parent 7f6e3f1 commit 98d337f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A streaming data visualization engine for Javascript, Perspective makes it simpl

Features:

- A fast, memory efficient streaming data engine written principally in C++ and
- A fast, memory efficient streaming pivot engine written principally in C++ and
compiled to both WebAssembly and asm.js via the
[emscripten](https://github.com/kripken/emscripten) compiler.

Expand All @@ -27,8 +27,6 @@ Features:
* [citibike.html](https://jpmorganchase.github.io/perspective/examples/citibike.html) NYC Citibike availability map.
* [streaming.html](https://jpmorganchase.github.io/perspective/examples/streaming.html) A streaming random data demo page.
* [coincap.html](https://jpmorganchase.github.io/perspective/examples/coincap.html) Streaming crypto currency prices via [Coincap.io](http://coincap.io/).
* [test.html](https://jpmorganchase.github.io/perspective/examples/test.html) The test suite.
* [benchmark.html](https://jpmorganchase.github.io/perspective/examples/benchmark.html) Some simple in-browser benchmarks.

## Installation

Expand Down Expand Up @@ -257,6 +255,9 @@ document.addEventListener("WebComponentsReady", function () {
var viewer = document.getElementById('view1');
viewer.load(data);

// Add new row
viewer.update([{'x': 5, 'y': 'e', 'z': true}]);

});
```

Expand Down

0 comments on commit 98d337f

Please sign in to comment.