I have collected count data highlighting the same thing, but in two different ways. It has been collected on the same dates through a year. I would like to display my collected data in the same plot.
So basically like this Plot multiple boxplot in one graph.
But maybe where the two box plots are subsummed by a larger box that only has one "entry" to the x-axis at the correct date.
I am able to make the two plots apear on top of each other, but this is not what i desire :)
Two boxplots on top of each other:
ggplot() + geom_boxplot(data=datedata, aes(x=Date, y=Timelinedata1, group=Date) +
geom_boxplot(data=datedata, aes(x=Date, y=Timelinedata1, group=Date))
Hope you can help.
Kind regards Mathias