Hi so I am trying to created a bar plot using ggplot2 but I am not sure how to go about doing it. I used the following code to get the data I am trying to graph:
MouseProjectOne %>%
filter(protein %in% c("pERK_N","ERK_N"))%>%
group_by(Genotype, Behavior, Treatment, protein)%>%
summarise(AverageExpression = mean(expression, na.rm = TRUE))->MouseNew
MouseNew
Through that, I was able to get the average protein expressions that I would like to graph. I am trying to use the average expression to make the following graph, but I am not sure how to go about doing it/if it is possible:
Please help