Here is an example of my data set:
Sensor ---- Time(GMT) ----- Temperature (°C)
1 ------- 24/06/2002 05:02:01 --- 33.855
2 ------- 24/06/2002 05:02:01 --- 33.827
3 ------- 24/06/2002 05:02:01 --- 33.104
4 ------- 24/06/2002 05:02:01 --- 33.787
1 ------- 24/06/2002 05:02:02 --- 33.609
2 ------- 24/06/2002 05:02:02 --- 33.609
3 ------- 24/06/2002 05:02:02 --- 33.610
4 ------- 24/06/2002 05:02:02 --- 33.608
To be able to work with it I have to rewrite this dataset, so that it looks like this:
Time ---------------------- Sensor1 - Sensor2 - Sensor3 -Sensor4
24/06/2002 05:02:01 -- 33.855 -- 33.827 -- 33.104 -- 33.787
24/06/2002 05:02:02 --33.609 -- 33.609 -- 33.610 -- 33.608
I'm a beginner in R, so this is pretty rough for me and I would be verv happy about suggestions or proposed solutions. Thanks.