From 49cfc1e32880314132d9af1667ac3e4eb860b75b Mon Sep 17 00:00:00 2001 From: markus Date: Tue, 2 Mar 2021 16:36:56 +0100 Subject: [PATCH] test pipeline --- cara/montecarlo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index cd0700b1..4ab93ea9 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -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