VR|Python+经济学:成本函数与图像( 二 )


ax3.set_xlabel('Quantity')
ax3.set_ylabel('Cost')
ax3.spines['top'
.set_visible(False)
ax3.spines['right'
.set_visible(False)
ax3.spines['bottom'
.set_position(('data' 0))
ax3.spines['left'
.set_position(('data'0))
plt.legend(['Marginal Cost''Average Cost''Average Variable Cost'
)
#第二个图 , 输出总不变成本与平均不变成本
fig = plt.figure(3)
ax4 = plt.subplot(111)
【VR|Python+经济学:成本函数与图像】#总不变成本线为棕色
ax4.plot(Quantity TFC'brown'label='Total Fixed Cost')
#平均不变成本线为金黄色
ax4.plot(Quantity AFC'gold'label='Average Fixed Cost')
ax4.set_xlabel('Quantity')
ax4.set_ylabel('Cost')
ax4.spines['top'
.set_visible(False)
ax4.spines['right'
.set_visible(False)
ax4.spines['bottom'
.set_position(('data' 0))
ax4.spines['left'
.set_position(('data'0))
plt.legend(['Total Fixed Cost''Average Fixed Cost'
)
plt.show()
成本函数图形:

MC曲线从下往上依次穿过AVC曲线和AC曲

总不变成本与平均不变成本 , AFC的大小代表AVC和AC曲线之间的距离