在子图之间共享等高线图属性
我正在并排绘制几个等高线图,以可视化某些函数的时间演变。我希望每个轮廓的值和颜色在所有子图之间共享,但是每次添加新的子图时,都会重新计算轮廓值(如下图所示),因此它们之间的任何比较都是没有意义的。
带颜色条的等高线图 http ://www.inf.utfsm.cl/~rbonvall/colorbar-and-contour-plots.png
我尝试过手动设置 cmap
、colorbar< 的不同组合每个子图实例上的 /code> 和
axes
属性,但没有成功。如何在所有子图之间共享等高线图属性?换句话说,如何为所有子图获得相同的颜色条?
I'm plotting several contour plots side by side for visualizing the time evolution of certain function. I want each contour's value and color to be shared between all subplots, but each time I add a new subplot, the contour values are recomputed (as shown in the image below), so any comparison between them is meaningless.
Contour plots with colorbars http://www.inf.utfsm.cl/~rbonvall/colorbar-and-contour-plots.png
I've tried setting manually different combinations of cmap
, colorbar
and axes
attributes on each subplot instance, without success. How can I share the contour plot attributes between all the subplots? In other words, how to get the same colorbar for all subplots?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以直接指定等值线图中要使用的等值线值。这是一个示例:
You can directly specify the contour values to be used in the contour plot. Here's an example: