Hello Rapidminer Community,
I'm trying to join two tables: one contains a start- and an end-date_time, the other only a timestamp.
The goal is, to classify, between which timestamp the event in table 2 has been
Example:
Table 1
ID # shift # start # end
1 ; "A" ; 2017-01-01 00:00:00 ; 2017-01-03 23:59:59
2 ; "B" ; 2017-01-04 00:00:00 ; 2017-01-05 23:59:59
3 ; "C" ; 2017-01-06 00:00:00 ; 2017-02-01 23:59:59
Table 2
ID # attr1 # timestamp
1; "error 1" ; 2017-01-01 07:00
2; "error 2" ; 2017-01-02 09:00
3; "error 4" ; 2017-01-06 07:00
Expected joined table
ID # attr1 # timestamp # shift (Table1)
1; "error 1" ; 2017-01-01 07:00 ; "A"
2; "error 2" ; 2017-01-02 09:00 ; "A"
3; "error 4" ; 2017-01-06 07:00 ; "C"
Any hint, how to get to the expected joined table??
Thanks in advance