在 gnuplot 中绘制两个轴
是否可以在 gnuplot 中绘制两条曲线,其中有两个相应的轴,每个轴都有不同的比例?
例如,同一个图表中的 y=x**2
和 y=x**4
(当使用相同比例绘制时,它们的变化足以“令人不舒服”) 。
Is it possible to plot two curves, with two corresponding axes in gnuplot, each of which has a different scale?
For example, y=x**2
and y=x**4
in the same graph (they vary enough to be "uncomfortable" when plotted with the same scale).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以自动处理轴,而无需自己缩放并保持自动缩放:
You can have the axes handled automatically without you having to scale them yourself and keep auto-scaling:
可以为 y 和 y2(右轴)设置不同的范围,甚至可以独立设置标签/抽签的颜色。
然后我们只需将第二个函数除以 2(或适当的值)并设置颜色...如本例所示:
It is possible to set different ranges for y and y2 (the right axes), and even to set the color of the labels/tics independently.
Then we simply divide the second function by 2 (or something appropriate) and set the colors... as in this example: