test pipeline
This commit is contained in:
parent
7bf835c096
commit
49cfc1e328
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue