Skip to content
Prev 177588 / 398503 Next

to extract data

If Year is numeric data, then you can use:
beechworth.dt.2 <- subset(beechworth.dt, Year>=1997 & Year <=2008)
If it is character, then you can use:
beechworth.dt.2 <- subset(beechworth.dt, Year %in% as.character(1997:2008))

2009/4/20 Roslina Zakaria <zroslina at yahoo.com>: