2016-10-18 32 views
0

我有一個包含40列,每行100.000行的數據集,我需要過濾/減少/精簡:因此,我想刪除2014年10月1日之前以及20.8之後所做的所有訂單0.2016(時間跨度我要保持在表1.10.2104-20.8.2016)我怎樣才能做到這一點(和剛刪除不需要的舊數據出表)Here's一個例子:刪除沒有特定時間跨度的行

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) 

預期結果:

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) 
+0

看看[此篇](HTTP:/ /stackoverflow.com/questions/23622338/subset-a-dataframe-between-2-dates-in-r-better-way)。您也可以使用lubridate和'dmy_hm'來格式化日期 – etienne

回答

1

定義數據的示例代碼中缺少一個逗號和右括號。

固定在此之後,該數據定義如下所示(由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") 

然後一個可能的解決方案是

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")