import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
a1 = fig.add_axes([0.1,0.1,0.8,0.8])
x = np.arange(1,11)
a1.plot(x,np.exp(x))
a1.set_ylabel('exp')
a2 = fig.add_axes([0.2,0.6,0.3,0.2])
a2.plot(x,np.log(x),'ro-')
a2.set_ylabel('log')
fig.legend(labels=('exp','log'),loc='upper left')
plt.show()

本文通过Python的matplotlib和numpy库演示了如何绘制指数函数和对数函数的图形,并展示了双轴图表的制作方法。文章包括了设置坐标轴、添加图例等实用技巧。
884

被折叠的 条评论
为什么被折叠?



