Ive been trying to plot some data with ggplot2 and it accurately displays the data before facetting, but after facetting - the plot gets all screwed which is visibly apparent in the winter and summer samples. name of the dataframe is Chla. see code and corresponding graphs:
ggplot(Chla,mapping = aes(x=Chla$Bin,y =Chla$`D.O. (mg/L)`, color = Season))
+ geom_jitter()
Facet code:
ggplot(Chla,mapping = aes(x=Chla$Bin,y =Chla$D.O. (mg/L)
, color = Season))
+ geom_jitter()+facet_grid(Season~.)