[Solved] Fetch the time between two timestamps in R [duplicate]


Try this:

patients[patients$time > '2017-01-02 11:41:53' & patients$time < '2017-08-07 09:06:07',]

3

solved Fetch the time between two timestamps in R [duplicate]