search for: r39045

Displaying 2 results from an estimated 2 matches for "r39045".

Did you mean: 139045
2006 Sep 01
1
as.environment(NULL)
...e) can each be loaded in startup code (before the standard packages are loaded). For package "onion", I think I have followed all of sections 1.6.1 - 1.6.6 of R-exts, and it passes R CMD check for R-2.3.1. However, using R version 2.4.0 Under development (unstable) (2006-08-31 r39045) under MacOSX 10.4.7, I get this: * checking R files for non-ASCII characters ... OK * checking whether the package can be loaded ... ERROR Error in get("Re", pos = NULL, mode = "function") : using 'as.environment(NULL)' is defunct Error: unable to load R cod...
2006 Aug 31
1
S4 Method Dispatch for Sealed Classes
Hi, I encounter a problem with method dispatch with S4 classes, using the 'sealed' parameter in setClass. See that example below: setClass("X",representation(x="numeric"),sealed=TRUE) setGeneric("foo",function(x) standardGeneric("foo")) setMethod("foo",signature("X"),function(x) print("foo(X)")) x <-