欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Matplotlib绘制折线图

程序员文章站 2022-06-19 11:00:49
...
import matplotlib 
from matplotlib import pyplot as plt

plt.figure(figsize=(12,6))
plt.plot(womenhw.Year,womenhw.avgh,color="b",label="women",linewidth=1,marker="o")
plt.plot(menhw.Year,menhw.avgh,color="r",label="men",linewidth=1,marker="o")
plt.title("Average Height")
plt.legend()