PHP 对数图生成
我从 2008 年采样了一个小型维基百科集合,并尝试生成与此类似的图表: http://en.wikipedia.org/wiki/File:Wikipedia-n-zipf.png 从我所做的处理来看。我有词频和词的排名。如何根据我收集的数据动态生成图表?谢谢。
I sampled a small wikipedia collection from 2008 and trying generate a graph similar to this: http://en.wikipedia.org/wiki/File:Wikipedia-n-zipf.png
from the processing I did. I have word frequencies and ranks of words. How can I generate the graph on the fly from the data I collected? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解你的问题,你想动态生成 PNG 图表吗?
这个页面列出了一些很棒的 PHP 图表引擎。如果你想使用 PHP 生成词频图形,我个人最喜欢的是 PCHART 它是一个非常好的库生成这样的图表。
Google 图表完全免费,不会消耗太多服务器资源,但您拥有的资源要少得多对缓存、样式等的控制。这里的主要区别是实际的图像生成是由 Google 完成的。
如果您希望它看起来完全像那样,您可以使用其中任何一个并使用最基本的设置来获得您所需要的。
If I am understanding your question correctly, you want to generate PNG charts on the fly?
This Page lists a few great chart engines for PHP. If you want to generate graphics using PHP for word frequencies, my personal favorite is PCHART It is a really nice library to generate charts like that.
Google Chart is completely free and doesn't use as much server power, but you have much less control over caching, styling, etc. The key difference here is that the actual image generation is done by Google.
If you want it to look exactly like that, you can use any of them and use the most basic settings to get what you need.
我想你想使用谷歌图表 API / 图表工具。
您可以在此处找到
折线图文档和示例
I think you want to use the google chart api / graph tools.
You can find it here
Line charts documentation and examples