Displaying 2 results from an estimated 2 matches for "mvca".
Did you mean:
  mca
  
2004 Oct 08
1
Function _coerce_ in _setIs_ never entered (S4).
Hi,
Please consider the following trivial example.
In the sample code I first define a class MVCa using composition. This 
class contains a slot  of type list.
Next I define an inheritance relation using the function setIs -> MVCa 
"is a" list.
Then I define a function printlength which prints the list-length which 
is defined for the type "list".
If I call this function...
2004 Oct 08
0
user interface and documentation of setIs and setAs, some suggestions (S4).
By reading the documentation for _setIs_ I noted that for the same 
object three different names are used.
1) the name of the first argument in the functions coerce and replace in 
setIs must be _obj_ (see example section or)
setIs("MVCa","list",coerce=function(obj){obj@list},replace=function(obj,value){obj@list<-value}) 
2) At the same time in the usage section:
setIs(class1, class2, test=NULL, coerce=NULL, replace=NULL,
           by = character(), where = topenv(parent.frame()), classDef =,
           extensi...