Displaying 1 result from an estimated 1 matches for "le110".
Did you mean:
te110
2011 Feb 15
1
S4 problems
...od() does not behave as desired, giving
an error message when I try to define a method for
Oarray objects.
Also, if I define a method for array objects, this does not
give an error message, but neither does it behave as desired,
as the method is not found when passing an Oarray object
to foo().
LE110:~/packages% R --vanilla --quiet
> library(Oarray)
> setGeneric("foo",function(x){standardGeneric("foo")})
[1] "foo"
> setMethod("foo","Oarray",function(x){x})
in method for ?foo? with signature ?"Oarray"?: no definition for class...