search for: getmarketdata

Displaying 1 result from an estimated 1 matches for "getmarketdata".

2007 Dec 24
1
Help with read.zoo and transform
R I get a daily feed of data over the internet that I keep in various .csv files. I have built a function that reads that data into R for me: getMarketData<-function(market) { library(zoo) pathname<- "C:/DATA/" files<-c("AN_REV.csv","AX_REV.csv","BN_REV.csv") markets<-c("AUS","DAX","GBP") df<-read.zoo(paste(pathname,files[match(market,markets)],sep=""),...