Why might I come up with very different answers for these two lines of code:
nrow(aql[(aql$`Land Use`=="RESIDENTIAL" & aql$`Location Setting`=="SUBURBAN"),])
[1] 4514
...and...
nrow(subset(aql, (`Location Setting`=="SUBURBAN" & `Land Use`=="RESIDENTIAL")))
[1] 3527