test pipeline

This commit is contained in:
markus 2021-03-02 16:36:56 +01:00
parent 7bf835c096
commit 49cfc1e328

View file

@ -1118,10 +1118,10 @@ def compare_viruses_qr(violins: bool = True) -> None:
# A list of 7 colors corresponding to each of the boxes
# Represented as tuples of three numbers on the interval [0, 1] (e.g. (1, 0, 0)) (R, G, B)
colors = [(1, 0, 0), (0, 1, 0), (0, 0, 1)] + [(x, x, x) for x in np.linspace(0.1, 0.9, 4)]
pastels = [x + (0.3, ) for x in colors[:3]]
pastels = [x for x in colors[:3]]
# The colors of the borders surrounding the violin plots
border_colors = [(0, 0, 0, 1), (0, 0, 0, 1), (0, 0, 0, 1)]
border_colors = [(0, 0, 0), (0, 0, 0), (0, 0, 0)]
line_color = (0.8, 0.8, 0.8)
whisker_width = 0.8