search for: derived_1

Displaying 1 result from an estimated 1 matches for "derived_1".

Did you mean: derived_m
2012 Aug 06
1
OO code organization
..... } )       For j=1,...,n: in  derived_j/derived_j.R:   defines class "derived_j" and does   setMethod("showSelf", signature(this="derived_j"), definition= function(this){ ... } )   Finally in tests/tests.R    we do   source("../base/base.R") source("../derived_1/derived_1.R") source("../derived_2/derived_2.R") .... source("../derived_n/derived_n.R")    now we check which methods "showSelf" are known at this point:   showMethods("showSelf")   and get >showMethods("showSelf") Function: showSelf (packa...