在 Node.js 中绘制
我想使用 node.js 构建一个能够绘制图表的服务器。
到目前为止,我找不到有关如何将 Matplotlib/ Pylab 连接到节点的有用信息。
也许可以连接 GNUPlot 吗?我个人更喜欢 Matplotlib,但 GNUPlot 也可以。根据我的经验,我提到的工具在处理大量数据负载时优于 flot 或 TheJit 等工具。
任何关于在 Node.js 中创建快速绘图的建议将不胜感激。
I would like to build a server using node.js which is able to plot graphs.
I could not find useful information so far on how to hook Matplotlib/ Pylab into node.
Maybe GNUPlot can be hooked up? I personally prefer Matplotlib but GNUPlot would be fine, too. In my experience the tools I mentioned outperform tools like flot or TheJit for huge data loads.
Any suggestions on creating fast plots from within node.js will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用子进程并执行外部程序,注意它终止并获取输出。或者,如果您想自己完成,请查看 node-canvas 库。
Either use child processes and execute external programs, watch for theit termination and take the output. Or have a look at the node-canvas lib if you want to do it by yourself.