需要在 .NET 中创建对数概率图表
我可以创建一个在一个轴上具有对数刻度的图表,但我也需要在另一轴上有一个概率刻度。
提前致谢。
I can create a chart with a logarithmic scale on one axis, but I need to have a probability scale on the other axis as well.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我终于用Flot弄清楚了这一点(http://code.google.com/p/flot/ )。它允许使用 JavaScript 进行自定义轴转换,因此我基本上将 Math.log/Math.exp 馈送到一个尺度,并将 Excel 的 NORMSDIST 和 NORMSINV 的 JavaScript 等效项馈送到另一个尺度。效果很好。
I finally figured this out, using Flot (http://code.google.com/p/flot/). It allows for custom axis transforms using JavaScript, so I basically fed Math.log/Math.exp to one scale, and the JavaScript equivalent of Excel's NORMSDIST and NORMSINV to the other scale. Works great.