I have created two subsets in my data to group my data however for some reason the subsets are skipping over some qualifying rows and I cant work out why. This is my subset instructions:
W21_24<-subset(kickData,year_week == c("2020-W21","2020-W22","2020-W23","2020-W24"))
W37_41<-subset(kickData,year_week == c("2020-W37","2020-W38","2020-W39","2020-W40","2020-W41"))
which returns correct results into a data frame, however not complete results. It skips over some rows for some reason.
(There are a 116 rows that meet the first subset criteria but it only brings back 28. There are a 144 rows for the second subset but it only brings back 29)