簡體   English   中英

掩蓋等高線圖中的特定區域?

[英]Mask a specific area in contour plot?

我想知道是否有人知道如何在 python 中的等高線圖中屏蔽或隱藏特定區域,這是我的代碼的一部分

    self.fig=plt.figure()
    delta = 0.025
    xmin=4
    xmin=6
    x=np.arange(4,6,delta)
    ymin=85
    ymax=91
    y = np.arange(85, 91, delta)
    X, Y = np.meshgrid(x, y)
    Z=formel()//here im using a specific formula to calculate Z
    plt.gcf().subplots_adjust(left=0.16)
    plt.xlabel(xlabel)
    plt.ylabel(ylabel)
    self.CS = plt.contour(X, Y, Z)
    plt.xlim(xmin, xmax)
    plt.ylim(ymin, ymax)
    plt.plot(pointX, pointY, 'kx')
    plt.clabel(self.CS, inline=1, fontsize=10)
    self.canvas = FigureCanvasTkAgg(self.fig, self)
    self.canvas.get_tk_widget().config(width=400,height=400)`

這是我想掩蓋這些區域的方式在此處輸入圖片說明 謝謝你們

您可以使用PathPatch在頂部顯示您的蒙版,如下所示:

import numpy as np
import matplotlib.patches as mpatches
import matplotlib.pyplot as plt
import matplotlib.path as mpath

ax = plt.gca()

x = np.linspace(0.04, 0.06, 100)
y = np.random.random(100) * [0.91 - 0.85] + 0.85

top, right, bottom, left = y.max(), x.max(), y.min(), x.min()
mask_height = (top - bottom) * 0.4      # 40% mask coverage

plt.plot(x, y, zorder=1)

ax.set_xlim(left, right)
ax.set_ylim(bottom, top)

path_data = [
    (mpath.Path.MOVETO, (left, bottom)),
    (mpath.Path.LINETO, (right, bottom)),
    (mpath.Path.LINETO, (left, mask_height + bottom)),
    (mpath.Path.CLOSEPOLY, (0,0)),

    (mpath.Path.MOVETO, (right , top)),
    (mpath.Path.LINETO, (right, top - mask_height)),
    (mpath.Path.LINETO, (left, top)),
    (mpath.Path.CLOSEPOLY, (0, 0)),
    ]

codes, verts = zip(*path_data)
path = mpath.Path(verts, codes)
patch = mpatches.PathPatch(path, facecolor=(0.8, 0.8, 0.8), lw=2, ec=(0.8, 0.8, 0.8), zorder=2)#, alpha=0.5)
ax.add_patch(patch)
plt.show()

這會給你類似的東西:

用掩碼繪圖

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM