I have a data table in R:
name date
---- ----
John 1156649280
Adam 1255701960
...etc...
I want to get all of the rows that have a date within a range. In SQL, I might say SELECT * FROM mytable WHERE date > 5 AND date < 15
What is the equivalent in R, to select rows based on the range of values in a particular column?
See Question&Answers more detail:os