Displaying 3 results from an estimated 3 matches for "sk10".
Did you mean:
s10
2004 Aug 23
1
Installing R on DEC Alpha - problems with dynamic loading
...; unresolved
Execution halted
The unloadNamespace has effectively unloaded a symbol from a completely
different shared object.
Can anybody shed any light on this problem?
Thanks.
-----
Mike Firth
Senior Technical Specialist
AstraZeneca Pharmaceuticals
Mereside
Alderley Park
Macclesfield
Cheshire
SK10 3LT
Tel: 01625 513919
2004 Aug 23
1
Installing R on DEC Alpha - problems with dynamic loading
...; unresolved
Execution halted
The unloadNamespace has effectively unloaded a symbol from a completely
different shared object.
Can anybody shed any light on this problem?
Thanks.
-----
Mike Firth
Senior Technical Specialist
AstraZeneca Pharmaceuticals
Mereside
Alderley Park
Macclesfield
Cheshire
SK10 3LT
Tel: 01625 513919
2004 Apr 19
3
How to write an S4 method for sum or a Summary generic
If I have a class Foo, then i can write an S3 method for sum for it:
>setClass("Foo",representation(a="integer"));aFoo=new("Foo",a=c(1:3,NA))
>sum.Foo <- function(x,na.rm){print(x);print(na.rm);sum(x at a,na.rm=na.rm)}
>sum(aFoo)
But how do I write an S4 method for this? All my attempts to do so have
foundered. For example