组合 Google 折线图上的正弦曲线
我有随时间变化的不同幅度的正弦曲线的数据,我想将所有曲线组合成图表上的一条曲线。
是否可以使用 Google Chart API 来做到这一点,或者可以推荐其他方法吗?
I have data for sin curves of differing magnitudes over time and I would like to combine all the curves into a single curve on a chart.
Is it possible to do this with the Google Chart API or can alternative approaches be recommended?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google 的图表 API 不是图形计算器。它显示预先计算的数据,而不是方程。因此,如果您预先计算了一系列 x 值的结果,那么图表 API 可以绘制它。
(如果点数小于 5k,Google 电子表格可能是您尝试的最快途径。)
如果您还没有计算出结果 - 如果您只有方程 - 那么您的问题更多的是数学问题而不是图表 API 问题。 (但同样,电子表格可能是一种快速的开始方式。)
Google's Chart API isn't a graphic calculator. It displays pre-calculated data, not equations. So if you have the results pre-calculated for a series of x-values, then yes, the Chart API can plot it.
(If the number of points is < ~5k, a Google Spreadsheet is probably your fastest route to try it out.)
If you don't have the results already calculated - if you just have the equations - then your problem's more of a maths question than a Chart API question. (But again, a spreadsheet might be a fast way to get going.)