I am trying to create a violin plot comparing genetic variant class against age at time of surgery and I am getting some very weird results.
I have been using the below guide, which makes creating violin plots look easy:
plot = ggplot(df,aes(x=factor(Category), y=age.at.time.of.surgery)) +
geom_violin()