[nodejs] Re: New Streaming API from Plotly

2014-03-29 Thread Postlethwaite
Here is a real-time solution to the double pendulum problem using Plotly. http://plot.ly/~streaming-demos/4/ everyone sees the same data at the same time, this is not an animation. @Floby Thanks! We do use aggregation in the case of 1D and 2D histograms but in all of our other plot types

[nodejs] Re: New Streaming API from Plotly

2014-03-28 Thread Floby
this is some pretty impressive stuff ! I assume the data you pipe to your plots are aggregated in some way (like bar charts, bubble charts, etc.) Are there any plans to have a streaming API consume these aggregates ? something like stream = plotly.stream('my_bubble_chart'); stream.on('data',

[nodejs] Re: New Streaming API from Plotly

2014-03-27 Thread Ket
If this is real time data streaming, it is pretty fast. Impressive. Never see something working smoothly like this before. How much data in bytes do you send each time. On Tuesday, March 25, 2014 11:28:26 PM UTC+7, Postlethwaite wrote: We at Plotly have just released our Streaming API (our

[nodejs] Re: New Streaming API from Plotly

2014-03-27 Thread Postlethwaite
It depends on the size of the incoming JSON objects. For simple plots like the one I linked to above it can be a very small amount of data. For example a stringified utf8 json object {x:1, y:3} results in a buffer around ~18 bytes. I accept data packets every 50ms which would be 360 bytes