I am using the following in R to generate a Boxplot out of a given set of data:
ggplot(data = daten, aes(x=Bodentyp, y=Fracht)) + geom_boxplot(aes(fill=Bewirtschaftungsform))
Now I want to display the number of data points going into each category of the column "Bodentyp". How do I achieve this?

geom_jitter(aes(colour = Bewirtschaftungsform))do what you like to have?