Graph of zero point clumped together after applying ggbreak() in ggplot2

59 Views Asked by At

I dont have data between 1 and 11 hrs (inyour text x axis) so I want to delete this portion from my graph.

How can I put zero values in each group instead of being clumped together?

enter image description here

I tried to plot the graph as follows:

plot <-  ggplot(bgse_lmean, aes(time_h)) + 
          geom_point(aes(y = Conc, shape = Isolate, col = Isolate, group = Isolate), size = 2.5)+
           geom_line(aes(y = Conc, group= Isolate, col = Isolate))+ 
          scale_x_continuous(breaks=c(0,12, 16, 20, 24))+
           xlab("Time (h)") + ylab("Conc mg/ml") + 
          scale_color_brewer(palette = "Set1") +
          facet_wrap(parameters~., 
           strip.position =  "top", 
          nrow = 3)

plot
p2 <- plot + scale_x_break(c(1,11))
0

There are 0 best solutions below