This is my code:
before<-filter(data,Period == "Before")
b4 <- summarySE(before, measurevar="count", groupvars=c("Stream","Year"))
ggplot(b4, aes(x=Year, y=count, colour=Stream)) + geom_errorbar(aes(ymin=count-se, ymax=count+se)) +geom_line() +geom_point()
I keep getting the errors and the graph looks super sloppy
Warning messages:
1: Removed 2 row(s) containing missing values (geom_path).
2: Removed 5 rows containing missing values (geom_point).
the data is from 1-100, changing the period at 51 from before to after