gpt4 book ai didi

python - 增加 matplotlib 中图例线的线宽

转载 作者:IT老高 更新时间:2023-10-28 20:31:51 34 4
gpt4 key购买 nike

我知道,如果我更改线条的线宽,它会在图例中自动更新。但是我想只更改图例线宽而不影响绘图。

最佳答案

下面是一个简单的例子:

import numpy as np
import matplotlib.pyplot as plt

# make some data
x = np.linspace(0, 2*np.pi)
y1 = np.sin(x)
y2 = np.cos(x)

# plot sin(x) and cos(x)
p1 = plt.plot(x, y1, 'b-', linewidth=1.0)
p2 = plt.plot(x, y2, 'r-', linewidth=1.0)

# make a legend for both plots
leg = plt.legend([p1, p2], ['sin(x)', 'cos(x)'], loc=1)

# set the linewidth of each legend object
for legobj in leg.legendHandles:
legobj.set_linewidth(2.0)

plt.show()

关于python - 增加 matplotlib 中图例线的线宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9706845/

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