gpt4 book ai didi

没有头的 Python 箭袋图

转载 作者:太空宇宙 更新时间:2023-11-03 14:11:41 27 4
gpt4 key购买 nike

我想制作一个没有箭头的箭袋图。我还想要有边框,以便箭头可以从背景色图中脱颖而出。这是我试图制作这样一个情节的代码的主要部分:

plt.quiver(phia[sl1,sl2], R0a[sl1,sl2],u,v, color='white', headlength=0, headwidth = 1, pivot = 'middle', scale = scale, width=width, linewidth = 0.5)

如果这很重要,则绘图在极轴上。这适用于大多数行,除了那些非常短的行。在这些情况下,边界的一些人造尾部是在线条之后产生的。我生成的受此影响最大的情节之一如下:

Quiver plot with artifacts at the end of lines

对此问题的任何解决方案或绕过它的建议将不胜感激!谢谢!

最佳答案

将箭头的 headaxislength 参数指定为零可以达到目的:

import numpy as np
import matplotlib.pyplot as plt

theta = np.linspace(0, 2*np.pi, 16)
r = np.linspace(0, 1, 6)
x = np.cos(theta)[:,np.newaxis]*r
y = np.sin(theta)[:,np.newaxis]*r

quiveropts = dict(color='white', headlength=0, pivot='middle', scale=3,
linewidth=.5, units='xy', width=.05, headwidth=1) # common options
f, (ax1, ax2) = plt.subplots(1,2, sharex=True, sharey=True)
ax1.quiver(x,y, -y, x, headaxislength=4.5, **quiveropts) # the default
ax2.quiver(x,y, -y, x, headaxislength=0, **quiveropts)

上面的代码产生了以下没有箭头的颤动图。 quiverplot without arrows

关于没有头的 Python 箭袋图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37154071/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com