October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following are the steps required to plot all three graphs:
fig = plt.figure(1, figsize=(14, 6))
month_num = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]units_sold = [500, 600, 750, 900, 1100, 1050, 1000, 950, 800, 700, 550, 450]
curv2rect_tr1 = Affine2D().scale(200, 1).rotate_deg(30)
grid_helper1 = floating_axes.GridHelperCurveLinear(curv2rect_tr1, extremes=(0, 13, 0, 1400))
ax1 = floating_axes.FloatingSubplot(fig, 131, grid_helper=grid_helper1)fig.add_subplot(ax1)axp1 = ax1.get_aux_axes(curv2rect_tr1) ...
Read now
Unlock full access