Displaying 1 result from an estimated 1 matches for "dataype".
Did you mean:
datatype
2004 Sep 07
2
as(object,"list") as(object,"matrix") differences?
Hello!
as(object,"list") and as(object,"matrix") behave quite differently if it comes to their attributes.
I define two classes. One of them "contains" a "list" the other a "matrix"
setClass("myclass"
,representation(info="character")
,contains="matrix"
)
setClass("mylist"