search for: gogarch

Displaying 4 results from an estimated 4 matches for "gogarch".

Did you mean: goarch
2012 May 14
3
R i386 2.15.0 'gogarch' package issue
Hi all, I've just downloaded and installed the latest R 32-bit version plus RExcel and R Commander. I'm having several problems in loading gogarch package: The command *library(gogarch, pos=4)* returns *ERROR: package/namespace load failed for 'gogarch'* The command *require(gogarch)* returns *Error : Function found when exporting methods from the namespace 'gogarch' which is not S4 generic: 'print'* How may I solve...
2009 Jan 30
1
Methods not loaded in R-Devel vs 2.8.1
...hin this package I have set a method "residuals" for two classes. In version 2.8.1 these two are reported whereas in R-Devel (2009-01-28 r47766). What have I missed? What has changed and how can I rectify the issue? Your help and pointers are welcome. For 2.8.1: ********** > library(gogarch) Loading required package: fGarch Loading required package: timeDate Loading required package: timeSeries Loading required package: fBasics Loading required package: MASS Warning message: package 'gogarch' was built under R version 2.9.0 > showMethods("residuals") Function: re...
2011 Jul 06
0
How to use "Update" for an object of clss GOGARCH
Hi, I am using gogarch from the package "gogarch". i have 13 series. the univariate model for the one of the series has a statistically insignificant constant term (garch(1,1)). so I want to re fit the model assuming the constant term top be zero....can i use "update" method to do so....if not please...
2010 Aug 25
1
Documenting S4 Methods
I'm in the process of converting some S3 methods to S4 methods. I have this function : setGeneric("enrichmentCalc", function(rs, organism, seqLen, ...){standardGeneric("enrichmentCalc")}) setMethod("enrichmentCalc", c("GenomeDataList", "BSgenome"), function(rs, organism, seqLen, ...) { ... ... ... })