Hello,
What is wrong in the below code? What do Ihave to do to make it work? Gs
file is my working directory but for some reason it cannot be found..
da <- read.table(file.choose(),header=T,sep="\t")
head(da)
source("garchoxfit_R.txt")
m1=garchOxFit(formula.mean=~arma(0,0),formula.var=~igarch(1,1),series=gs,include.var=F)
Error in garchOxFit(formula.mean = ~arma(0, 0), formula.var = ~igarch(1, :
object 'gs' not found
--
View this message in context: http://r.789695.n4.nabble.com/object-gs-not-found-tp4103915p4103915.html
Sent from the R help mailing list archive at Nabble.com.
object 'gs' not found
3 messages · Arto, Uwe Ligges
On 24.11.2011 14:34, Arto wrote:
Hello,
What is wrong in the below code? What do Ihave to do to make it work? Gs
file is my working directory but for some reason it cannot be found..
da<- read.table(file.choose(),header=T,sep="\t")
head(da)
source("garchoxfit_R.txt")
m1=garchOxFit(formula.mean=~arma(0,0),formula.var=~igarch(1,1),series=gs,include.var=F)
What is "garchoxfit_R.txt"? WHat is garchOxFit()? What is F? What is gs? You mean a character vector containg the path of your working directory as you got from getwd()? I cannot believe that. Uwe Ligges
Error in garchOxFit(formula.mean = ~arma(0, 0), formula.var = ~igarch(1, : object 'gs' not found -- View this message in context: http://r.789695.n4.nabble.com/object-gs-not-found-tp4103915p4103915.html Sent from the R help mailing list archive at Nabble.com.
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
Hello, I got the code working now. Thanks for the help anyways=)! Arto -- View this message in context: http://r.789695.n4.nabble.com/object-gs-not-found-tp4103915p4104792.html Sent from the R help mailing list archive at Nabble.com.