将加权平均线添加到浮点数图表中?
我在 jQuery 的 Flot 中有一个散点(点)图。
我想向点图添加一条加权平均线,就像在 Excel 图表中一样。 (或者实际上,对数或类似的“最佳拟合线”是可以接受的。)
这在 Flot 中可能吗?
我在文档中看不到任何有关它的内容,但也许这里有人知道如何做。
谢谢!
I have a scatter (point) chart in jQuery's Flot.
I'd like to add a weighted average line to the point chart, as you can do in Excel charts. (Or a logarithmic or similar "line of best fit" would be acceptable, actually.)
Is this possible in Flot?
I can't see anything about it in the docs, but perhaps someone here knows how.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这不是弗洛特自己做的事情。
您可以通过对数据进行一些简单计算来制定自己的最佳拟合线。然后您可以使用 Flot 绘制结果。该链接包含一个工作示例,但不是特定于 Flot 的。
No this isn't something Flot does itself.
You can work out your own line of best fit by doing some simple calculations on your data. You can then plot the result using Flot. The link contains a worked example but is not Flot specific.