I want to make bar graph for some log data I'm wondering if I can make the x line starting at y=-1
, so all the bars are upward. My Sample data is like
Bacteria Site Mean SE
A a 2 0.1
A b 3 0.3
A c 2 0.2
B a 1 0.2
B b -1 0.3
B c -1.5 0.1
C a 3 0.2
C b -1 0.1
C c 1 0.1
What I want is, each bacterium has a own bar graph with x axis as site, y axis as mean with error bars and y axis starts at -1, using facet_wrap to combine three barplots into one. Is it possible to specify this in ggplot2?
Thank you.