I am trying to figure out what the call object in R is and force it to characters. However, so far my efforts have been in vain.
myFun=function(a=1) { x=sys.call() return(as.character(x)) } x=myFun(a=2)
I was also looking for a function that prints a function call (something like print.call ). But I could not find him.
Does anyone know how call objects are printed?
source share