Possible Duplicate:
How to create a variable of rownames?
Please run it in R:
require(quantmod)
setSymbolLookup(SDB=list(name="000001.sz",src="yahoo"))
getSymbols("SDB",from="2010-01-01",to="2010-02-01")
sdb=as.data.frame(weeklyReturn(SDB))
sdb
What I get is:
weekly.returns
2010-01-08 -0.07830343
2010-01-15 -0.05176991
2010-01-22 0.07699487
2010-01-29 -0.05979203
2010-02-01 -0.02119816
What I want to get is:
date weekly.returns
1 2010-01-08 -0.07830343
2 2010-01-15 -0.05176991
3 2010-01-22 0.07699487
4 2010-01-29 -0.05979203
5 2010-02-01 -0.02119816
How can I do this?
Note that this is an XTS object, not a basic data.frame. After the conversion, I want the original rownames to appear as a new variable in the resulting data.frame.

attributes(weeklyReturn(SDB))orstr(weeklyReturn(SDB)by the OP should have been able to help them solve the problem easily since it would reveal that this is anXTSobject, which means one can't userownamesas one could in the earlier question, but could, instead, useindex. – Ananda Mahto Jul 11 '12 at 10:07xtsobject,rownameswon't work as expected. – Ananda Mahto Jul 11 '12 at 10:08