Displaying 1 result from an estimated 1 matches for "sourcearg".
Did you mean:
source_re
2012 Mar 06
1
sourcearg function is there a better way already built into R
Hi list:
I work with a lot of laboratory analytical data and I often have
inconsistent names of files and variables within those files so I wrote
this sourcearg function to facilitate handling file and variable names
as both character and R names. The source of the function is given below
sourcearg=function(arg){
su=sprintf("%s\n",arg)
sink("TMPTMPRarg")
printf("%s\n",arg) # printf = cat(sprintf(....))
sink()
sourc...