Displaying 1 result from an estimated 1 matches for "liketemplate".
Did you mean:
libtemplate
2010 Apr 25
0
S4 generic and method arguments -- "expanded signature"
...lting to all
of the args) ...
setGeneric(
name="myFunction",
def = function(filename,
dimLengths,
dimSteps,
dimStarts,
likeTemplate,
likeFile) {
standardGeneric("myFunction") }
)
In my first method, for example, I only need access to the first 4
args, so I try ...
setMethod(
"myFunction",
signature=signature(filename="character",...