let say i have dataset for State , year , week and location in csv format i want retrieve all data for specific state for year 2014 from week 36 to week 53 as follow
i've already do this but still have another not need states, thnx
LH14 <- (function(){
x <- read.csv("LocationHotspot2014.csv")
x[,"State"] <- toupper(lh14[,"State"])
x[x$State=="California",],
x[x$Week== c(36:53) ,]
})()