Hi!

Here a simple example.

setClass("myclass"
,representation(info="character")
,contains="matrix"
)

rownames(dd)<-c("a","b")
tt<-new("myclass",dd)
#the source of pain.
as(tt,"matrix")<-matrix(1,3,3) 
Error: length of dimnames [1] not equal to array extent


Is there a different way to do what I would like to do (I would like to change the 
@.Data and all its attributes in the object)?

 
Eryk.

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to