I have an xts objects which is yearqtr (1990 Q1 2012 Q3). I want to work with the data going up to 2011 Q3. I tried several things:
data["1990::2011:3"]
data["1990/2012-3"]
The 3 is treated like monthly, so if i use
data["1990::2012:9]
data["1990/2012-9]
I get the third quarter. However, this is inconvenient. I would like to have the third quarter, whenever i put a three in the brackats. How would I write this ?
Best regards and thanks in advance