I have been trying to filter through a dataset for my research project. I have time stamps with both the year/month/ date and hour/min/sec included in the column "ts" (for time stamp).
I have been using the dplyr "filter" function as such:
filter(df.flat.subset1, (projID == "168", ts= 2017-08-03))
I keep getting 0 rows or this error
Error: unexpected numeric constant in:
filter(df.flat.subset1, projID == "168", ts == "2017-08-03 %H:%M:%S)
if I try to leave the time as unknown...
df.flat.subset1
is my data set (ignore projID it is simply my project 168 in a larger dataset of multiple projects) and the date at which i would like to filter is August 3rd 2017.
I have thousands of values for that date so I cannot specify the exact time but I would like to at least narrow this down.
Any idea how I could do this??
Much thanks