I have a dataset of traffic count at several intersections at various dates. Most of the intersections were counted only once. I want to know if there is a significant daily and monthly variability in peak hour volumes.
So I ran an ANOVA model in R that look like this:
fit<-lm(trafficcount~factor(year)+factor(month))+factor(day)+factor(month))*factor(day))
anova(fit)
Looking at p-values, I then conclude whether or not there is a significant variability among day or month or year. Is that an acceptable method to achieve that?