Answers for "plt.plot thickness"

1

plt.plot width line

plt.plot(data,linewidth=4)
Posted by: Guest on June-12-2020
0

python matplotlib plot thickness

import matplotlib.pyplot as plt
import numpy as np

fig= plt.figure()

axes= fig.add_axes([0,0,1,1])

x= np.arange(0,11)

axes.plot(x,x**2, color='purple', linewidth=10)

plt.show()
Posted by: Guest on June-05-2021

Python Answers by Framework

Browse Popular Code Answers by Language