gpt4 book ai didi

python - Matplotlib:具有不同舱口的堆栈图

转载 作者:太空宇宙 更新时间:2023-11-03 12:55:31 25 4
gpt4 key购买 nike

我想使用 python matplotlib 库创建一个堆栈图,我按照下面的伪代码进行了操作

plt.stackplot(x,
[first_value, second_value, third_value],
colors=['color1','color2','color3'])

但是我想为每个部分(即 first_value、second_value、third_value)添加不同的影线,但是 hatch 命令适用于整个图。我怎样才能将不同舱口的列表传递给堆栈图?

最佳答案

stackplot 没有在不同多边形上单独设置阴影线的参数。所以我们的想法是遍历不同的堆栈并设置相应的阴影线。

stackplot 返回我们可以用于该目的的所有堆栈的列表。

import numpy as np; np.random.seed(1)
import matplotlib.pyplot as plt

fnx = lambda x: np.random.randint(5, 50, 10)
y = np.row_stack((fnx(0), fnx(0), fnx(0)))
x = np.arange(10)

fig, ax = plt.subplots()
stacks = ax.stackplot(x, y)

hatches=["\\", "//","+"]
for stack, hatch in zip(stacks, hatches):
stack.set_hatch(hatch)

plt.show()

enter image description here

关于python - Matplotlib:具有不同舱口的堆栈图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44067702/

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