I have in my program one class table "xts" and "zoo" which is as follows
> head(BRA$Adj.Close)
Adj.Close
2005-01-03 25722
2005-01-04 24848
2005-01-05 24692
2005-01-06 24367
2005-01-07 24747
2005-01-10 24292
I need add the dimname "Date" in this table, resulting in
Date Adj.Close
2005-01-03 25722
2005-01-04 24848
2005-01-05 24692
2005-01-06 24367
2005-01-07 24747
2005-01-10 24292
how I do it ?