@@ -426,13 +426,14 @@ obscuring data too much.
426
426
fig, (old, new) = plt.subplots(ncols=2, sharey=True)
427
427
with plt.style.context('default'):
428
428
new.boxplot(data, labels=['A', 'B', 'C', 'D'])
429
- new.set_title('New boxplots ')
429
+ new.set_title('v2.0 ')
430
430
431
431
with plt.style.context('classic'):
432
432
old.boxplot(data, labels=['A', 'B', 'C', 'D'])
433
- old.set_title('Old boxplots ')
433
+ old.set_title('classic ')
434
434
435
- new.set_ylim(bottom=0)
435
+ new.set_yscale('log')
436
+ old.set_yscale('log')
436
437
437
438
The previous defaults can be restored by setting::
438
439
@@ -551,7 +552,7 @@ default. The default face color is now ``'C0'`` instead of ``'b'``.
551
552
The previous defaults can be restored by setting::
552
553
553
554
mpl.rcParams['patch.force_edgecolor'] = True
554
- mpl.rcParams['patch.facecolor'] = True
555
+ mpl.rcParams['patch.facecolor'] = 'b'
555
556
556
557
or by setting::
557
558
@@ -1123,10 +1124,3 @@ mplot3d
1123
1124
- grid.color
1124
1125
- grid.linewidth
1125
1126
- grid.linestyle
1126
-
1127
-
1128
-
1129
- TEMPORARY NOTES TOM IS KEEPING IN THE SOURCE SO THEY DO NOT GET LOST
1130
- ====================================================================
1131
-
1132
- - lines.color change, only hits raw usage of Line2D
0 commit comments