複数の Quandl コードを同時に R に取り込もうとしていますが、データを含む [i] 列 (および日付列) を持つ単一の xts オブジェクトになりたいと考えています。
Quandl からデータを呼び出すために作成した関数は問題ないように見えますが、xts オブジェクトを作成するための構文について助けが必要です。これが私がこれまでに持っているものです:
# Build vector of model holdings
holdings <- c("VTI","VEA","VWO","LQD","BND","TLT","VNQ","GLD","VGSH")
# Function to fetch each holding as an xts object, adjusted close returns
getQholdings <- function(ticker){
codes <- paste("EOD/",ticker,".11",sep="")
for(i in 1:length(ticker)){
???? <- Quandl(codes[i],type="xts",transformation="rdiff",
start_date="2013-12-31",collapse="monthly",
force_irregular=TRUE)
}}
「for」関数の反復ごとにxtsオブジェクトを徐々に構築するためのある種の関数であると思われる疑問符がある場所に助けが必要です。