Displaying 2 results from an estimated 2 matches for "datatsorg".
Did you mean:
datastore
2010 Nov 22
4
Rexcel
Hello I am new to RExcel and I would like to run a source code form the
excel worksheet. I would like to run the following code
source("C:\\Quantil Aplicativos\\Genercauca\\BackwardSelectionNC.r")
from the excel wroksheet. Does anybody know how to do this?
Thank you
Felipe Parra
[[alternative HTML version deleted]]
2010 Nov 24
0
4. Rexcel (Luis Felipe Parra)-how to run a code from excel
...IONES
source(paste(path,"\\fUtilidades\\BackwardSelectionNC.r",sep<file://futilida
des//BackwardSelectionNC.r%22,sep>
=""))
source(paste(path,"\\fUtilidades\\CriteriosDeComparacion.r",sep<file://futil
idades//CriteriosDeComparacion.r%22,sep>
=""))
dataTSORG<-read.csv('entrada.csv', header = TRUE, sep = ",", quote="\"",
dec=".",fill = TRUE, comment.char="")
dataTSORG = ts(dataTSORG, start=c(1950,1), frequency=12)
dataTSORG = as.timeSeries(dataTSORG)
X = prcomp(dataTSORG[,2:40])$x
return(X)
}
Does...