Saved Bookmarks
| 1. |
months=['dec'.'jan'.'feb'.'mar']atendence=[70,90,75,95]pli.plot(months.attendence)plt.show() |
|
Answer» matplotlib. pyplot is a collection of command style functions that make matplotlib work like MATLAB. Each pyplot function makes some change to a figure: e.g., creates a figure, creates a plotting area in a figure, plots some lines in a plotting area, decorates the plot with labels, etc. |
|