Displaying 1 result from an estimated 1 matches for "element1content".
2004 Feb 27
0
Re: [R] Is there a way to deactivate partial matching in R?
...... output to outchannel
}
# as outchannel was usually specified and only occasionally the default
used,
# it was more 'natural' (and lazy) to call it
makeoutput(mychannel, ...)
# compared to
makeoutput(..., outchannel=mychannel)
# standard use is
makeoutput(thischannel, element1name=element1content,
element2name=element2content)
# with an option to send to the active channel as default called like
makeoutput(element1name=element1content, element2name=element2content)
# calling this as
do.call("makeoutput", ll) # where ll <- list(out=outcontent,
whatever=whatevercontent)
# actu...