Anatomy of matplotlib Scipy 2015
Instructor: Benjamin Root, Joe Kington
Book: Interactive Application using Matplotlib
Ipython notebook: https://github.com/WeatherGod/AnatomyOfMatplotlib.git
绘图
import matplotlib.pyplot as plt
fig, axes = plt.subplots(nrows=2, ncols=2)
添加颜色
fill, fill_between, stackplot
网友评论