Displaying 1 result from an estimated 1 matches for "outcont".
Did you mean:
outcnt
2004 Feb 27
0
Re: [R] Is there a way to deactivate partial matching in R?
...put(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)
# actually generates the nonsense call
makeoutput(outchannel=outcontent, whatever=whatevercontent)
# I still find it difficult to write reliable code in R.
# I am always afraid to run into something like
> # simple example for dangerous partial list matching
&...