Skip to content

Commit

Permalink
rename the mean properties in the box plot
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Aug 26, 2024
1 parent d41b29b commit 97f765c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions statista/time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from matplotlib.axes import Axes


MEAN_PROP = dict(marker="x", markeredgecolor="w", markerfacecolor="firebrick")
BOX_MEAN_PROP = dict(marker="x", markeredgecolor="w", markerfacecolor="firebrick")
VIOLIN_PROP = dict(face="#27408B", edge="#DC143C", alpha=0.7)


Expand Down Expand Up @@ -241,7 +241,7 @@ def box_plot(
notch=notch,
patch_artist=True,
showmeans=mean,
meanprops=MEAN_PROP,
meanprops=BOX_MEAN_PROP,
boxprops=dict(
facecolor=(
"#27408B" if color is None else color.get("boxes", "#27408B")
Expand Down

0 comments on commit 97f765c

Please sign in to comment.