@@ -3062,8 +3062,7 @@ def boxplot(self, x, notch=False, sym=None, vert=True, whis=1.5,
30623062 if sym == '' :
30633063 # blow away existing dict and make one for invisible markers
30643064 flierprops = dict (linestyle = 'none' , marker = '' ,
3065- markeredgecolor = 'none' ,
3066- markerfacecolor = 'none' )
3065+ color = 'none' )
30673066 # turn the fliers off just to be safe
30683067 showfliers = False
30693068 # now process the symbol string
@@ -3076,12 +3075,11 @@ def boxplot(self, x, notch=False, sym=None, vert=True, whis=1.5,
30763075 flierprops ['marker' ] = marker
30773076 # if we have a color, use it
30783077 if color is not None :
3079- flierprops ['color' ] = color
30803078 # assume that if color is passed in the user want
30813079 # filled symbol, if the users want more control use
30823080 # flierprops
3083- flierprops ['markeredgecolor ' ] = color
3084- flierprops [ 'markerfacecolor' ] = color
3081+ flierprops ['color ' ] = color
3082+
30853083
30863084 # replace medians if necessary:
30873085 if usermedians is not None :
@@ -3320,9 +3318,7 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=True,
33203318 final_whiskerprops .update (whiskerprops )
33213319
33223320 # set up the default flier properties
3323- final_flierprops = dict (linestyle = 'none' , marker = '+' ,
3324- markeredgecolor = 'b' ,
3325- markerfacecolor = 'none' )
3321+ final_flierprops = dict (linestyle = 'none' , marker = '+' , color = 'blue' )
33263322
33273323 # flier (outlier) properties
33283324 if flierprops is not None :
0 commit comments