From da7ffb9e71b3c33b70dc85c1f060bd774e7d9974 Mon Sep 17 00:00:00 2001 From: Alexander Willecke Date: Mon, 3 Jun 2024 09:11:19 +0200 Subject: [PATCH] plots: adds violin plot as type --- plots.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plots.py b/plots.py index 9b086e0..6190c42 100644 --- a/plots.py +++ b/plots.py @@ -613,6 +613,8 @@ def heatplot(plot_type): fig = catplot('count') case 'point': fig = catplot('point') + case 'violin': + fig = catplot('violin') case 'heat': fig = heatplot('heat') case _: