gheine at mathnmaps.com
2009-Dec-24 00:04 UTC
[Rd] Locating code that is outside of functions in R scripts
Working with a number of scripts (text files with R commands) that I "source" into R sessions from time to time. The source() command is most convenient (at least for me) if it only loads function definitions, and doesn't otherwise change the interactive environment. For example, I might have a file that looks like func1<-function() { code code code } # this is a comment A<-"this is code outside the function definitions"; func2<-function() { code # a comment with a spurious } code code } I would like a quick-and-dirty script that finds the line beginnning with "A", since it is R code outside of any function definition. On the other hand it would ignore the two comment lines, and would not be fooled by the spurious "}" in the second comment line. Probably not too hard to put something like this together, but am making this post in case it is something that has already been done. Thanks!
Duncan Murdoch
2009-Dec-24 00:31 UTC
[Rd] Locating code that is outside of functions in R scripts
On 23/12/2009 7:04 PM, gheine at mathnmaps.com wrote:> Working with a number of scripts (text files with R commands) that I > > "source" into R sessions from time to time. > > The source() command is most convenient (at least for me) > > if it only loads function definitions, and doesn't otherwise change the > > interactive environment. For example, I might have a file that looks like > > > > func1<-function() { > > code > > code > > code > > } > > # this is a comment > > > > A<-"this is code outside the function definitions"; > > > > func2<-function() { > > code > > # a comment with a spurious } > > code > > code > > } > > > > I would like a quick-and-dirty script that finds the line beginnning with > > "A", since it is R code outside of any function definition. > > On the other hand it would ignore the two comment lines, and would not be > > fooled by the spurious "}" in the second comment line. > > Probably not too hard to put something like this together, but am making > > this post in case it is something that has already been done.You should call parse() to process the file, then examine the list of expressions that gets returned. This function will recognize a function definition if it is the form above: isfundef <- function(e) { identical(e[[1]], quote(`<-`)) && identical(e[[3]][[1]], quote(`function`)) } but there are other ways to create functions which it will miss. Nevertheless, pasting your code into a file and doing this seems to give you what you want: > exprs <- parse("test.R") > lapply(exprs, isfundef) [[1]] [1] TRUE [[2]] [1] FALSE [[3]] [1] TRUE > exprs[[2]] A <- "this is code outside the function definitions" or > exprs[!unlist(lapply(exprs, isfundef))] expression(A<-"this is code outside the function definitions") Duncan Murdoch
Gabor Grothendieck
2009-Dec-24 00:51 UTC
[Rd] Locating code that is outside of functions in R scripts
This sources the indicated file into the local environment (i.e. the environment within src) and then only copies out the objects that are functions into the workspace so that you are only left with them. src <- function(file) { source(file, local = TRUE) for(nm in ls(all = TRUE)) if (is.function(get(nm))) assign(nm, get(nm), .GlobalEnv) } # usage: src("myfile.R") On Wed, Dec 23, 2009 at 7:04 PM, <gheine at mathnmaps.com> wrote:> > Working with a number of scripts (text files with R commands) that I > > "source" into R sessions from time to time. > > The source() command is most convenient (at least for me) > > if it only loads function definitions, and doesn't otherwise change the > > interactive environment. ?For example, I might have a file that looks like > > > > func1<-function() { > > ?code > > ?code > > ?code > > ?} > > # this is a comment > > > > A<-"this is code outside the function definitions"; > > > > func2<-function() { > > ? code > > # a comment with a spurious } > > ? code > > ? code > > ? } > > > > I would like a quick-and-dirty script that finds the line beginnning with > > "A", since it is R code outside of any function definition. > > On the other hand it would ignore the two comment lines, and would not be > > fooled by the spurious "}" in the second comment line. > > Probably not too hard to put something like this together, but am making > > this post in case it is something that has already been done. > > > > > > Thanks! > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel >