我的#df包含不同设备的数据以及它们各自的开始和结束时间戳,我想计算给定时间戳上设备的确切#,如我的预期#df表所述。
my_df<-data.frame(customer=rep("XYZ",2),device=c("x","a"),
start_timestamp=c("2020-05-13 07:50:06","2020-05-13 08:01:06"),
end_startstamp=c("2020-05-13 08:05:06","2020-05-13 08:10:06"),
start_date=c("2020-05-13","2020-05-13"),start_hour=c(7,8),start_minute=c(50,1),
end_hour=c(8,8),end_minute=c(5,10))
my_df
customer device start_timestamp end_startstamp start_date start_hour start_minute end_hour end_minute
1 XYZ x 2020-05-13 07:50:06 2020-05-13 08:05:06 2020-05-13 7 50 8 5
2 XYZ a 2020-05-13 08:01:06 2020-05-13 08:10:06 2020-05-13 8 1 8 10
expected_df<-data.frame(customer=rep("XYZ",21),time_stamp=c("2020-05-13 07:50:00","2020-05-13 07:51:00","2020-05-13 07:52:00","2020-05-13 07:53:00",
"2020-05-13 07:54:00","2020-05-13 07:55:00","2020-05-13 07:56:00","2020-05-13 07:57:00",
"2020-05-13 07:58:00","2020-05-13 07:59:00","2020-05-13 08:00:00","2020-05-13 08:01:00",
"2020-05-13 08:02:00","2020-05-13 08:03:00","2020-05-13 08:04:00","2020-05-13 08:05:00",
"2020-05-13 08:06:00","2020-05-13 08:07:00","2020-05-13 08:08:00","2020-05-13 08:09:00",
"2020-05-13 08:10:00"),
no_devices_seen=c(1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1))
1条答案
按热度按时间fnatzsnv1#
这里有一个使用
tidyverse
功能: