I have coding experience, but not with R and I have a question I wonder if someone could help me with please.
I trying to merge and filter a file ("temp_data") that has already been filtered (successfully) using tables created from excel worksheets. However, this second stage of filtering is not proving successful as I am finding 0 records.
It's really hard to know without seeing data. I would suggest looking at the data BEFORE filtering.
temp_data <- merge(temp_data, sdate[,c("Date","Select_d","GMT")],by.x = "date_1", by.y = "Date",all.x = TRUE)
nrow(temp_data)
View(temp_data) # Are there records where Select_d looks like it could be 1
Thanks again, this was exactly what I needed in the end. I found out that the temp_data table didn't have anything for one field as the formatting was inconsistent.