Is there a command the will give me the value of the xts at a specific time each day? My data is in xts format with data/time format being yyyy-mm-dd hh:mm:ss. For example i would like to only pull the data at time 13:00:00. Any suggestions? I tried using the to.period function to no avail
My Data is in the formats:
Date/Time Value
2013-08-11 09:00:00 1
2013-08-11 09:01:00 2
2013-08-12 09:00:00 3
2013-08-12 09:01:00 7
2013-08-13 09:00:00 9
2013-08-13 09:01:00 7
So basically I want to grab only the Date/Time that has a 09:00:00 in it. So the answer should be
2013-08-11 09:00:00 1
2013-08-12 09:00:00 3
2013-08-13 09:00:00 9
I tried using theData['09:00:00'] but that only retruns my columns names. to.daily