I’m using the quantmod package to import financial series data from Yahoo.
library(quantmod)
getSymbols("^GSPC")
[1] "GSPC"
I’d like to change the name of object “GSPC” to “SPX”. I’ve tried the rename function in the reshape package, but it only changes the variable names. The “GSPC” object has vectors GSPC.Open, GSPC.High, etc. I’d like my renaming of “GSPC” to “SPX” to also change GSPC.Open to SPX.Open and so on.
Renaming an object and the colnames within it is a two step process:
Otherwise, the getSymbols function allows you to not auto assign, in which case you could skip the first step (you will still need to rename the columns).
Comment from @backlin
R employs so-called lazy evaluation. An effect of that is that when you “copy”
SPY <- GSPCyou do not actually allocate new space in the memory forSPY. R knows the objects are identical and only makes a new copy in the memory if one of them is modified (i.e. when they are no longer the identical, e.g. when you change the column names on the following line). So by doingyou never really copy
GSPCbut merely give it a new name (SPY) and then tell R to forget the first name (GSPC). When you then change the column names you do not need to create a new copy ofSPYsinceGSPCno longer exists, meaning you have truly renamed the object without creating intermediate copies.