my problem:
I have a time series, which look like this:
v1 v2 t v3 day
1 46 33 2005-06-04 00:00:00 13 2005-06-04
2 25 24 2005-06-04 01:00:00 15 2005-06-04
3 18 9 2005-06-04 02:00:00 11 2005-06-04
4 11 22 2005-06-04 03:00:00 1 2005-06-04
5 11 31 2005-06-04 04:00:00 0 2005-06-04
6 12 27 2005-06-04 05:00:00 3 2005-06-04
7 46 33 2005-06-04 06:00:00 13 2005-06-04
8 25 24 2005-06-04 07:00:00 15 2005-06-04
9 18 9 2005-06-04 08:00:00 11 2005-06-04
10 11 22 2005-06-04 09:00:00 1 2005-06-04
11 11 31 2005-06-04 10:00:00 12 2005-06-04
12 12 27 2005-06-04 11:00:00 13 2005-06-04
13 46 33 2005-06-04 12:00:00 13 2005-06-04
14 25 24 2005-06-04 13:00:00 15 2005-06-04
15 18 9 2005-06-04 14:00:00 11 2005-06-04
16 11 22 2005-06-04 15:00:00 1 2005-06-04
17 11 31 2005-06-04 16:00:00 0 2005-06-04
18 12 27 2005-06-04 17:00:00 3 2005-06-04
I want the dates ( format "2005-06-04") for the days when "v3" for 10:00:00, 11:00:00, 12:00:00 and 13:00:00 is greater than 10.
I have no idea how to implement this.
Thanks a lot.