On Sun, Apr 3, 2011 at 12:14 PM, Samuel Le <samuel...@srlglobal.com> wrote:
> Dear all,
>
>
>
> I would like to log the calls to my functions. I am trying to do this using 
> the function match.call():
>
>
>
> fTest<-function(x)
>
> {
>
>      theCall<-match.call()
>
>      print(theCall)
>
>      return(x)
>
> }
>
>
>
>> fTest(2)
>
> fTest(x = 2)
>
> [1] 2
>
>
>
> I can see "theCall" printed into the console, but I don't manage to convert 
> it into a character to write it into a log file with other informations.
>

See ?trace

-- 
Statistics & Software Consulting
GKX Group, GKX Associates Inc.
tel: 1-877-GKX-GROUP
email: ggrothendieck at gmail.com

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to