I want to compare with the case where I do not categorize my data.
I can do
ggplot(dataset)+
geom_boxplot(aes(x=Category, y=Values,fill = Category))
and I also can do
ggplot(dataset)+
geom_boxplot(aes(y=Values))
But how can I display them combined in only one ggplot?
So x-axis would have labels like "Category A", "Category B", "Total".