Answers for "python matplotlib plot thickness"

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