How to select only the rows that contain a number in column b.
a <- c(1,5,3,1,-8,6,-1) b <- c(4,-2,1,0,\"c\",2,\"DX\") df <- data.frame(a,
This should be faster (it doesn't use regex)
df[!is.na(as.numeric(df$b)), ]