Augmenter l'épaisseur d'une ligne avec matplotlib

Published: 13 mars 2017

DMCA.com Protection Status

Pour augmenter l'épaisseur d'une ligne avec matplotlib il y a l'option linewidth, illustration:

Comment augmenter l'épaisseur d'une ligne avec matplotlib
Comment augmenter l'épaisseur d'une ligne avec matplotlib

import matplotlib.pyplot as plt

plt.plot([0,10],[0,10])
plt.plot([0,10],[0+3,10+3], color='b', linewidth=20)
plt.plot([0,10],[0+6,10+6], color='b', linewidth=40)

plt.title("Increase line width Matplotlib")
plt.grid()
plt.savefig("increase_line_width_matplotlib.png", bbox_inches='tight')
plt.show()

Références

Image

of