@@ -426,13 +426,14 @@ obscuring data too much.
426426 fig, (old, new) = plt.subplots(ncols=2, sharey=True)
427427 with plt.style.context('default'):
428428 new.boxplot(data, labels=['A', 'B', 'C', 'D'])
429- new.set_title('New boxplots ')
429+ new.set_title('v2.0 ')
430430
431431 with plt.style.context('classic'):
432432 old.boxplot(data, labels=['A', 'B', 'C', 'D'])
433- old.set_title('Old boxplots ')
433+ old.set_title('classic ')
434434
435- new.set_ylim(bottom=0)
435+ new.set_yscale('log')
436+ old.set_yscale('log')
436437
437438The previous defaults can be restored by setting::
438439
@@ -551,7 +552,7 @@ default. The default face color is now ``'C0'`` instead of ``'b'``.
551552The previous defaults can be restored by setting::
552553
553554 mpl.rcParams['patch.force_edgecolor'] = True
554- mpl.rcParams['patch.facecolor'] = True
555+ mpl.rcParams['patch.facecolor'] = 'b'
555556
556557or by setting::
557558
@@ -1130,10 +1131,3 @@ mplot3d
11301131 - grid.color
11311132 - grid.linewidth
11321133 - grid.linestyle
1133-
1134-
1135-
1136- TEMPORARY NOTES TOM IS KEEPING IN THE SOURCE SO THEY DO NOT GET LOST
1137- ====================================================================
1138-
1139- - lines.color change, only hits raw usage of Line2D
0 commit comments