7

我正在制作一个简单的等高线图,我想通过使其变粗并更改颜色来突出显示零线。

cs = ax1.contour(x,y,obscc)
ax1.clabel(cs,inline=1,fontsize=8,fmt='%3.1f')

我如何实现这一目标?谢谢 :-)

4

1 回答 1

9

HTH - 这基本上是从matplotlib 文档中获取的轮廓示例,只是带有修改的水平线

从 - 方法返回的对象在其属性contour中包含对等高线的引用。collections等高线只是常见的 LineCollections。

在以下代码片段中,对等高线图的引用位于CS(即cs在您的问题中):

CS.collections[0].set_linewidth(4)           # the dark blue line
CS.collections[2].set_linewidth(5)           # the cyan line, zero level
CS.collections[2].set_linestyle('dashed')
CS.collections[3].set_linewidth(7)           # the red line
CS.collections[3].set_color('red')
CS.collections[3].set_linestyle('dotted')

type(CS.collections[0])
# matplotlib.collections.LineCollection

如果您没有明确指定级别,以下是如何找出级别:

CS.levels
array([-1. , -0.5,  0. ,  0.5,  1. ,  1.5])

还有很多功能可以格式化单个标签:

CS.labelCValueList    CS.labelIndiceList    CS.labelTextsList
CS.labelCValues       CS.labelLevelList     CS.labelXYs
CS.labelFmt           CS.labelManual        CS.labels
CS.labelFontProps     CS.labelMappable      CS.layers
CS.labelFontSizeList  CS.labelTexts
于 2013-01-10T22:20:42.913 回答