Date <- c(2000-01-01, 2000-02-02, ... )
Abbreviation <- c("TR_10", "SR_10", "SR_9", "FR_7", "SR_7", ...)
Value <- c(1.2, 1.3, 1.4, 1.8, ... )
Data <- cbind(Date,Abbreviation,Value)
How can I remove all rows, which haven't the abbreviation (initial letters) "SR_"?
Thank you!