在 R 中将数据放入新的 .env 有什么好处?速度等。
对于时间序列等数据,新的 .env 是否类似于数据库?
我的问题最初涉及在 R 中下载资产价格,建议将它们放入新的 .env 中。为什么会这样?谢谢:
library(TTR)
url = paste('http://www.nasdaq.com/markets/indices/nasdaq-100.aspx',sep="")
txt = join(readLines(url))
# extract tables from this pages
temp = extract.table.from.webpage(txt, 'Symbol', hasHeader = T)
temp[,2]
# Symbols
symbols = c(temp[,2])[2:101]
currency("USD")
stock(symbols, currency = "USD", multiplier = 1)
# create new environment to store symbols
symEnv <- new.env()
# getSymbols and assign the symbols to the symEnv environment
getSymbols(symbols, from = '2002-09-01', to = '2013-10-17', env = symEnv)