AbsoluteBeginner
AbsoluteBeginner

Reputation: 505

Delete rows which are without a specific time span

I have a dataset with 40 columns with 100.000 rows each which I need to filter/reduce/thin out: So I want to remove all orders made before 1.October 2014 and after 20.8.2016 (time span I want to keep in table is 1.10.2104-20.8.2016) How can I do this (and just delete the unneeded older data out the table) Here´s an example:

DB <- data.frame(orderID  = c(1,2,3,4,5,6,7,8,9,10),     
orderDate = c("01.07.2014 05:11","12.08.2014 12:39","09.09.2015 09:14","04.10.2014 16:15","02.11.2015 07:04", "10.11.2015 16:52","20.02.2016 08:08","12.04.2016 14:07","24.07.2016 17:04","09.09.2016 06:04"),  
itemID = c(2,3,2,5,12,4,2,3,1,5),  
size = c("m", "l", 42, "xxl", "m", 42, 39, "m", "m", 44),
color = c("green", "red", "blue", "yellow", "red", "yellow", "blue", "red", "green", "black"),
manufacturer = c("11", "12", "13", "12", "13", "13", "12", "11", "11", "13")
customerID = c(1, 2, 3, 1, 1, 3, 2, 2, 1, 1)

Expected Outcome:

DB <- data.frame(orderID  = c(3,4,5,6,7,8,9),     
orderDate = c("09.09.2015 09:14","04.10.2014 16:15","02.11.2015 07:04", "10.11.2015 16:52","20.02.2016 08:08","12.04.2016 14:07","24.07.2016 17:04"),  
itemID = c(2,5,12,4,2,3,1),  
size = c(42, "xxl", "m", 42, 39, "m", "m"),
color = c("blue", "yellow", "red", "yellow", "blue", "red", "green"),
manufacturer = c("13", "12", "13", "13", "12", "11", "11")
customerID = c(3, 1, 1, 3, 2, 2, 1)

Upvotes: 0

Views: 60

Answers (1)

Johannes Ranke
Johannes Ranke

Reputation: 469

There is a comma and a closing parenthesis missing in your example code defining the data.

After fixing that, the data definition looks like this (generated by dput):

structure(list(orderID = c(1, 2, 3, 4, 5, 6, 7, 8, 9, 10), orderDate = structure(c(1L, 
8L, 4L, 3L, 2L, 6L, 9L, 7L, 10L, 5L), .Label = c("01.07.2014 05:11", 
"02.11.2015 07:04", "04.10.2014 16:15", "09.09.2015 09:14", "09.09.2016 06:04", 
"10.11.2015 16:52", "12.04.2016 14:07", "12.08.2014 12:39", "20.02.2016 08:08", 
"24.07.2016 17:04"), class = "factor"), itemID = c(2, 3, 2, 5, 
12, 4, 2, 3, 1, 5), size = structure(c(5L, 4L, 2L, 6L, 5L, 2L, 
1L, 5L, 5L, 3L), .Label = c("39", "42", "44", "l", "m", "xxl"
), class = "factor"), color = structure(c(3L, 4L, 2L, 5L, 4L, 
5L, 2L, 4L, 3L, 1L), .Label = c("black", "blue", "green", "red", 
"yellow"), class = "factor"), manufacturer = structure(c(1L, 
2L, 3L, 2L, 3L, 3L, 2L, 1L, 1L, 3L), .Label = c("11", "12", "13"
), class = "factor"), customerID = c(1, 2, 3, 1, 1, 3, 2, 2, 
1, 1)), .Names = c("orderID", "orderDate", "itemID", "size", 
"color", "manufacturer", "customerID"), row.names = c(NA, -10L
), class = "data.frame")

Then a possible solution is

custom_format = "%d.%m.%Y"
date <- as.Date(substr(DB$orderDate, 1, 11), format = custom_format)
subset(DB, date > "2014-10-01" & date < "2016-08-20")

Upvotes: 1

Related Questions