美文网首页
Matplotlib:添加label

Matplotlib:添加label

作者: 1Z实验室阿凯 | 来源:发表于2016-05-29 11:25 被阅读5162次

代码

import numpy as np
import matplotlib.pyplot as plt
...
plt.title('money-tax-bonus-salary')
plt.xlabel('money')
plt.ylabel('tax/bonus/salary')
plt.plot(moneyList,minTaxList,label='min tax')
plt.plot(moneyList,minSalaryList,label='min salary')
plt.plot(moneyList,maxSalaryList,label='max salary')
plt.plot(moneyList,minBonusList,label='min bonus')
plt.plot(moneyList,maxBonusList,label='max bonus')
pl.legend()
plt.show()

效果图

summary.png

相关文章

网友评论

      本文标题:Matplotlib:添加label

      本文链接:https://www.haomeiwen.com/subject/ygkqdttx.html