[erlang-questions] Graphing tools
Stu Bailey
stu.bailey@REDACTED
Tue Aug 28 01:42:31 CEST 2012
There are several nice javascript data visualization tools here:
http://d3js.org/
It's straight forward to send lots of data from Erlang to Javascript
running in a web browser using:
* BERT (http://bert-rpc.org/)
* BERT-JS (https://github.com/rustyio/BERT-JS)
* Websockets (http://www.websocket.org/)
* Yaws (http://yaws.hyber.org/websockets.yaws)
The nice thing is that on the Erlang side you are just
sending/receiving Erlang terms (i.e no complicated marshaling and
un-marshaling on the Erlang side). So you can do the data
reduction/analysis/computation on the Erlang side and render the data
in some meaningful visual way on the Javascript (web browser) side.
Have fun!
Stu
On Mon, Aug 27, 2012 at 3:50 PM, Richard O'Keefe <ok@REDACTED> wrote:
>
> On 28/08/2012, at 12:15 AM, kilgore trout wrote:
>
>> Hello Langers!
>> I'm looking for a graphing tool, anyone know of any useful libraries?
>> I have piles of performance data in .csv format and a parser to read it into records. I have been trying to find patterns and draw some meaningful conclusions but it would be so much easier if I could represent it graphically.
>
> You should probably do it in R (http://www.r-project.org).
> It's an environment, not a library, but if you want to find
> patterns in data, it's hard to go past.
>
> I believe there is an Erlang/R bridge somewhere.
>
> _______________________________________________
> erlang-questions mailing list
> erlang-questions@REDACTED
> http://erlang.org/mailman/listinfo/erlang-questions
More information about the erlang-questions
mailing list