Skip to content
Prev 312352 / 398506 Next

deleting data of a given date range.

Hi
It depends on structure of your data (unstated). If I presume that you have data frame and you have date in some column you can just use standard subsetting

new.data <- your.data[your.data$Date > some.threshold.Date, ] 

Regards
Petr