search for: catf

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

Did you mean: cat
2018 Feb 15
3
using cat to log to file with sapply
Hi List, I am trying to write unsuccessfully to a logfile with cat. Here my example code: letters[1:5]->x logf<-"test.txt" cat('%%%%%%%%%%%%%%%%%%%%%%%%%%\n',file=logf) catf<-function(x,...,logfile='log.txt', append=TRUE){ cat(x,'\n', file=logfile, append=append)} testit<-function(x,...){ paste0('this is x: ',x)->y return(y) catf("++++++++++++++++++test=============",...) } sapply(x, function(x) testit(x, logfile=log...