Displaying 1 result from an estimated 1 matches for "setclasss".
Did you mean:
setclass
2009 Nov 23
2
Question about S4
Dear R-ers,
I don't understand the following, maybe someone will help me
explain:
> setClasss('A')
[1] "A"
> new('a')
Error in new("a") :
trying to generate an object from a virtual class ("a")
> setClass('b', contains='a')
[1] "b"
> new('b')
An object of class ?b?
<S4 Type Object>
In what wa...