I use ggridges in R to visualize my data. But a lot of the lines are overlapping and are hard to read.
My code is:
ggplot(task1, aes(x = ibu, y = style, fill = style)) +
geom_density_ridges(alpha=1) +
theme_ridges() +
theme(legend.position = "none")
What should I change to make this visualization more readable?