matplotlib 如何在线图中放置内联标注

yfjy0ee7  于 2023-06-06  发布在  其他
关注(0)|答案(5)|浏览(438)

在Matplotlib中,制作图例(example_legend(),下面)并不太坚韧,但我认为将标签放在正在绘制的曲线上(如example_inline(),下面)更好。这可能非常麻烦,因为我必须手动指定坐标,而且,如果我重新格式化绘图,我可能必须重新定位标签。有没有办法在Matplotlib中自动生成曲线上的标签?能够以与曲线的Angular 相对应的Angular 定向文本的加分。

import numpy as np
import matplotlib.pyplot as plt

def example_legend():
    plt.clf()
    x = np.linspace(0, 1, 101)
    y1 = np.sin(x * np.pi / 2)
    y2 = np.cos(x * np.pi / 2)
    plt.plot(x, y1, label='sin')
    plt.plot(x, y2, label='cos')
    plt.legend()

def example_inline():
    plt.clf()
    x = np.linspace(0, 1, 101)
    y1 = np.sin(x * np.pi / 2)
    y2 = np.cos(x * np.pi / 2)
    plt.plot(x, y1, label='sin')
    plt.plot(x, y2, label='cos')
    plt.text(0.08, 0.2, 'sin')
    plt.text(0.9, 0.2, 'cos')

8nuwlpux

8nuwlpux1#

**更新:**用户cphyc已经为这个答案中的代码创建了一个Github仓库(参见here),并将代码捆绑到一个包中,可以使用pip install matplotlib-label-lines安装。

漂亮的图片:

matplotlib中,label contour plots非常容易(自动或通过鼠标单击手动放置标签)。目前还没有任何类似的功能可以以这种方式标记数据序列!可能有一些语义上的原因不包括这个功能,我错过了。
无论如何,我已经写了下面的模块,它允许半自动绘图标签。它只需要numpy和标准math库中的几个函数。

说明

labelLines函数的默认行为是沿着x轴均匀地间隔标签(自动放置在正确的y值上)。如果你愿意,你可以只传递一个数组,其中包含每个标签的x坐标。您甚至可以调整一个标签的位置(如右下角图所示),并根据需要均匀地间隔其余标签。
此外,label_lines函数不考虑在plot命令中没有分配标签的行(或者更准确地说,如果标签包含'_line')。
传递给labelLineslabelLine的关键字参数将传递给text函数调用(如果调用代码选择不指定,则会设置一些关键字参数)。

问题

  • 注解边界框有时会不希望地干扰其他曲线。如左上图中的110注解所示。我甚至不确定这是否可以避免。
  • 有时指定y位置会更好。
  • 它仍然是一个迭代的过程,以获得正确位置的注解
  • 仅当x轴值为float s时才有效

我晕

  • 默认情况下,labelLines函数假定所有数据系列跨越轴限制指定的范围。看看漂亮图片左上角的蓝色曲线。如果只有x范围0.5-1的数据,那么我们就不可能在所需的位置(略小于0.2)放置标签。this question是一个特别令人讨厌的例子。现在,代码没有智能地识别这种情况并重新排列标签,但是有一个合理的解决方案。labelLines函数接受xvals参数; x-由用户指定的值的列表,而不是整个宽度的默认线性分布。因此,用户可以决定将哪些x值用于每个数据系列的标签放置。

此外,我相信这是第一个答案,以完成 * 奖金 * 的目标,对齐标签与曲线,他们的。:)
label_lines.py:

from math import atan2,degrees
import numpy as np

#Label line with line2D label data
def labelLine(line,x,label=None,align=True,**kwargs):

    ax = line.axes
    xdata = line.get_xdata()
    ydata = line.get_ydata()

    if (x < xdata[0]) or (x > xdata[-1]):
        print('x label location is outside data range!')
        return

    #Find corresponding y co-ordinate and angle of the line
    ip = 1
    for i in range(len(xdata)):
        if x < xdata[i]:
            ip = i
            break

    y = ydata[ip-1] + (ydata[ip]-ydata[ip-1])*(x-xdata[ip-1])/(xdata[ip]-xdata[ip-1])

    if not label:
        label = line.get_label()

    if align:
        #Compute the slope
        dx = xdata[ip] - xdata[ip-1]
        dy = ydata[ip] - ydata[ip-1]
        ang = degrees(atan2(dy,dx))

        #Transform to screen co-ordinates
        pt = np.array([x,y]).reshape((1,2))
        trans_angle = ax.transData.transform_angles(np.array((ang,)),pt)[0]

    else:
        trans_angle = 0

    #Set a bunch of keyword arguments
    if 'color' not in kwargs:
        kwargs['color'] = line.get_color()

    if ('horizontalalignment' not in kwargs) and ('ha' not in kwargs):
        kwargs['ha'] = 'center'

    if ('verticalalignment' not in kwargs) and ('va' not in kwargs):
        kwargs['va'] = 'center'

    if 'backgroundcolor' not in kwargs:
        kwargs['backgroundcolor'] = ax.get_facecolor()

    if 'clip_on' not in kwargs:
        kwargs['clip_on'] = True

    if 'zorder' not in kwargs:
        kwargs['zorder'] = 2.5

    ax.text(x,y,label,rotation=trans_angle,**kwargs)

def labelLines(lines,align=True,xvals=None,**kwargs):

    ax = lines[0].axes
    labLines = []
    labels = []

    #Take only the lines which have labels other than the default ones
    for line in lines:
        label = line.get_label()
        if "_line" not in label:
            labLines.append(line)
            labels.append(label)

    if xvals is None:
        xmin,xmax = ax.get_xlim()
        xvals = np.linspace(xmin,xmax,len(labLines)+2)[1:-1]

    for line,x,label in zip(labLines,xvals,labels):
        labelLine(line,x,label,align,**kwargs)

生成上面漂亮图片的测试代码:

from matplotlib import pyplot as plt
from scipy.stats import loglaplace,chi2

from labellines import *

X = np.linspace(0,1,500)
A = [1,2,5,10,20]
funcs = [np.arctan,np.sin,loglaplace(4).pdf,chi2(5).pdf]

plt.subplot(221)
for a in A:
    plt.plot(X,np.arctan(a*X),label=str(a))

labelLines(plt.gca().get_lines(),zorder=2.5)

plt.subplot(222)
for a in A:
    plt.plot(X,np.sin(a*X),label=str(a))

labelLines(plt.gca().get_lines(),align=False,fontsize=14)

plt.subplot(223)
for a in A:
    plt.plot(X,loglaplace(4).pdf(a*X),label=str(a))

xvals = [0.8,0.55,0.22,0.104,0.045]
labelLines(plt.gca().get_lines(),align=False,xvals=xvals,color='k')

plt.subplot(224)
for a in A:
    plt.plot(X,chi2(5).pdf(a*X),label=str(a))

lines = plt.gca().get_lines()
l1=lines[-1]
labelLine(l1,0.6,label=r'$Re=${}'.format(l1.get_label()),ha='left',va='bottom',align = False)
labelLines(lines[:-1],align=False)

plt.show()
8wigbo56

8wigbo562#

@Jan Kuiken的回答当然是经过深思熟虑和透彻的,但也有一些警告:

  • 它并不适用于所有情况
  • 它需要相当多的额外代码
  • 从一个小区到下一个小区可能会有很大的不同

一种更简单的方法是注解每个图的最后一个点。这一点也可以圈起来,以强调。这可以通过一个额外的行来实现:

import matplotlib.pyplot as plt

for i, (x, y) in enumerate(samples):
    plt.plot(x, y)
    plt.text(x[-1], y[-1], f'sample {i}')

一个变体是to use方法matplotlib.axes.Axes.annotate

2eafrhcq

2eafrhcq3#

问得好,不久前我用这个做了一点实验,但没有用过很多,因为它仍然不是防弹的。我将绘图区域划分为32x32网格,并根据以下规则计算了每行标签的最佳位置的“势场”:

  • 白色是放置标签的好地方
  • 标签应靠近相应行
  • 标签应远离其他线

代码是这样的:

import matplotlib.pyplot as plt
import numpy as np
from scipy import ndimage

def my_legend(axis = None):

    if axis == None:
        axis = plt.gca()

    N = 32
    Nlines = len(axis.lines)
    print Nlines

    xmin, xmax = axis.get_xlim()
    ymin, ymax = axis.get_ylim()

    # the 'point of presence' matrix
    pop = np.zeros((Nlines, N, N), dtype=np.float)    

    for l in range(Nlines):
        # get xy data and scale it to the NxN squares
        xy = axis.lines[l].get_xydata()
        xy = (xy - [xmin,ymin]) / ([xmax-xmin, ymax-ymin]) * N
        xy = xy.astype(np.int32)
        # mask stuff outside plot        
        mask = (xy[:,0] >= 0) & (xy[:,0] < N) & (xy[:,1] >= 0) & (xy[:,1] < N)
        xy = xy[mask]
        # add to pop
        for p in xy:
            pop[l][tuple(p)] = 1.0

    # find whitespace, nice place for labels
    ws = 1.0 - (np.sum(pop, axis=0) > 0) * 1.0 
    # don't use the borders
    ws[:,0]   = 0
    ws[:,N-1] = 0
    ws[0,:]   = 0  
    ws[N-1,:] = 0  

    # blur the pop's
    for l in range(Nlines):
        pop[l] = ndimage.gaussian_filter(pop[l], sigma=N/5)

    for l in range(Nlines):
        # positive weights for current line, negative weight for others....
        w = -0.3 * np.ones(Nlines, dtype=np.float)
        w[l] = 0.5

        # calculate a field         
        p = ws + np.sum(w[:, np.newaxis, np.newaxis] * pop, axis=0)
        plt.figure()
        plt.imshow(p, interpolation='nearest')
        plt.title(axis.lines[l].get_label())

        pos = np.argmax(p)  # note, argmax flattens the array first 
        best_x, best_y =  (pos / N, pos % N) 
        x = xmin + (xmax-xmin) * best_x / N       
        y = ymin + (ymax-ymin) * best_y / N       

        axis.text(x, y, axis.lines[l].get_label(), 
                  horizontalalignment='center',
                  verticalalignment='center')

plt.close('all')

x = np.linspace(0, 1, 101)
y1 = np.sin(x * np.pi / 2)
y2 = np.cos(x * np.pi / 2)
y3 = x * x
plt.plot(x, y1, 'b', label='blue')
plt.plot(x, y2, 'r', label='red')
plt.plot(x, y3, 'g', label='green')
my_legend()
plt.show()

以及由此产生的图:

jv2fixgn

jv2fixgn4#

matplotx(我写的)有line_labels(),它将标签绘制在线条的右侧。当太多的线集中在一个点时,它也足够聪明,可以避免重叠。(参见stargraph的例子。)它通过解决一个特定的非负最小二乘问题的目标位置的标签。无论如何,在许多情况下,没有重叠开始,如下面的例子,这是没有必要的。

import matplotlib.pyplot as plt
import matplotx
import numpy as np

# create data
rng = np.random.default_rng(0)
offsets = [1.0, 1.50, 1.60]
labels = ["no balancing", "CRV-27", "CRV-27*"]
x0 = np.linspace(0.0, 3.0, 100)
y = [offset * x0 / (x0 + 1) + 0.1 * rng.random(len(x0)) for offset in offsets]

# plot
with plt.style.context(matplotx.styles.dufte):
    for yy, label in zip(y, labels):
        plt.plot(x0, yy, label=label)
    plt.xlabel("distance [m]")
    matplotx.ylabel_top("voltage [V]")  # move ylabel to the top, rotate
    matplotx.line_labels()  # line labels to the right
    plt.show()
    # plt.savefig("out.png", bbox_inches="tight")

km0tfn4u

km0tfn4u5#

一个更简单的方法,如Ioannis Filippidis所做的:

import matplotlib.pyplot as plt
import numpy as np

# evenly sampled time at 200ms intervals
tMin=-1 ;tMax=10
t = np.arange(tMin, tMax, 0.1)

# red dashes, blue points default
plt.plot(t, 22*t, 'r--', t, t**2, 'b')

factor=3/4 ;offset=20  # text position in view  
textPosition=[(tMax+tMin)*factor,22*(tMax+tMin)*factor]
plt.text(textPosition[0],textPosition[1]+offset,'22  t',color='red',fontsize=20)
textPosition=[(tMax+tMin)*factor,((tMax+tMin)*factor)**2+20]
plt.text(textPosition[0],textPosition[1]+offset, 't^2', bbox=dict(facecolor='blue', alpha=0.5),fontsize=20)
plt.show()

code python 3 on sageCell

相关问题