I have created multiple bar charts from my data, using stat_summary. However, I want to manually specify the limits of the error bars (instead of using mean_cl_boot). How can this be done for data graphed using facet_grid?
The code I used to create the charts is below:
graph <- ggplot(slantclean, aes(x = View,value, fill = Texture))
graph + stat_summary(fun.y = mean, geom = "bar", position = "dodge") +
stat_summary(fun.data = mean_cl_boot, geom = "pointrange",
position = position_dodge(width = 0.90)) +
labs(x = "View", y = "Vertical height of ellipse (cm)", fill = "Texture") +
facet_grid( Shape ~ TNOGroup)
Unfortunately, the complex nature of the data means that a minimal example is impossible. The data frame can be accessed here. An example of the plot is here.

stat_summary). Then you could specify the size of the error bars at that time and just use that summarized data as a data argument togeom_pointrange.