Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0834f7e

Browse files
committed
Merge pull request #5526 from phobson/add-bxpparams-to-rctemplate
MNT: Add boxplot params to rctemplate
2 parents 7f46613 + 2fa840a commit 0834f7e

File tree

2 files changed

+45
-1
lines changed

2 files changed

+45
-1
lines changed

lib/matplotlib/mpl-data/stylelib/classic.mplstyle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ boxplot.capprops.color: k
322322
boxplot.capprops.linestyle: -
323323
boxplot.capprops.linewidth: 1.0
324324
boxplot.flierprops.color: b
325-
boxplot.flierprops.linestyle: -
325+
boxplot.flierprops.linestyle: none
326326
boxplot.flierprops.linewidth: 1.0
327327
boxplot.flierprops.marker: +
328328
boxplot.flierprops.markeredgecolor: k

matplotlibrc.template

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,50 @@ backend : %(backend)s
102102
#patch.edgecolor : black
103103
#patch.antialiased : True # render patches in antialiased (no jaggies)
104104

105+
### Boxplot
106+
#boxplot.notch : False
107+
#boxplot.vertical : True
108+
#boxplot.whiskers : 1
109+
#boxplot.bootstrap : None
110+
#boxplot.patchartist : False
111+
#boxplot.showmeans : False
112+
#boxplot.showcaps : True
113+
#boxplot.showbox : True
114+
#boxplot.showfliers : True
115+
#boxplot.meanline : False
116+
117+
#boxplot.flierprops.color : 'k'
118+
#boxplot.flierprops.marker : 'o'
119+
#boxplot.flierprops.markerfacecolor : 'none'
120+
#boxplot.flierprops.markeredgecolor : 'k'
121+
#boxplot.flierprops.markersize : 6
122+
#boxplot.flierprops.linestyle : 'none'
123+
#boxplot.flierprops.linewidth : 1.0
124+
125+
#boxplot.boxprops.color : 'k'
126+
#boxplot.boxprops.linewidth : 1.0
127+
#boxplot.boxprops.linestyle : '-'
128+
129+
#boxplot.whiskerprops.color : 'k'
130+
#boxplot.whiskerprops.linewidth : 1.0
131+
#boxplot.whiskerprops.linestyle : '-'
132+
133+
#boxplot.capprops.color : 'k'
134+
#boxplot.capprops.linewidth : 1.0
135+
#boxplot.capprops.linestyle : '-'
136+
137+
#boxplot.medianprops.color : 'b'
138+
#boxplot.medianprops.linewidth : 1.0
139+
#boxplot.medianprops.linestyle : '-'
140+
141+
#boxplot.meanprops.color : 'b'
142+
#boxplot.meanprops.marker : '^'
143+
#boxplot.meanprops.markerfacecolor : 'b'
144+
#boxplot.meanprops.markeredgecolor : 'b'
145+
#boxplot.meanprops.markersize : 6
146+
#boxplot.meanprops.linestyle : 'none'
147+
#boxplot.meanprops.linewidth : 1.0
148+
105149
### FONT
106150
#
107151
# font properties used by text.Text. See

0 commit comments

Comments
 (0)