📜  python matplotlib 绘图厚度 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:47.076000             🧑  作者: Mango

代码示例1
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()