My data frame looks like this:
`cycle1 ( 14 teachers)` `cycle2 ( 16 teachers)` `cycle3 ( 11 teachers)`
1 7.14 18.8 27.3
2 14.3 25 27.3
3 21.4 25 18.2
4 14.3 31.2 36.4
5 21.4 18.8 45.5
and I would like to create a barchart which looks like this: barchart
I succeeded to do it with the barplot() function but I need to add confidence intervals, that's why I'm trying to do it with ggplot. The problem comes from my data's organization but I don't know how to solve it.