The function in question is scriptSearch. I’m not much for superlatives — ”most” and ”best” imply one dimension, but we live in a multi-dimensional world. I’m making an exception.
The statistic I have in mind for this use of ”useful” is the waiting time between calls to the function divided by the human time saved by the call.
I wrote a version of this for a company where I do consulting. There are few days working there that I don’t have at least one bout with it. Using scriptSearch can easily save half an hour compared to what I would have done prior to having the function.
scriptSearch
The two main inputs are:
- a string to search for
- a directory to search in
By default it only looks in R scripts in the directory (and its subdirectories).
Examples of directories to search are:
- directory holding a large collection of R scripts
- directory holding the source for local R packages
- personal directory with lots of subdirectories containing R scripts and functions
Examples of uses are:
- where is
blimblamdefined? - where are all the uses of
splishsplashin the local packages (because I want to change its arguments)? - a few weeks ago I created a pdf called
factor_history, where is the code that produced that?
These uses might be done with something like:
scriptSearch("blimblam *<-", "path/to/scriptFarm", sub=FALSE)scriptSearch("splishsplash", "path/to/Rsource")scriptSearch("factor_history", "..")
You may be confused by the asterisk in the first call. The string to search for can be a regular expression. In this case the asterisk means that it will find assignments whether or not there is a space between the object name and the assignment arrow.
BurStMisc
scriptSearch was the main motivation for updating the BurStMisc package to version 1.1. The package is on CRAN.
ntile
The ntile function is also new to BurStMisc. It returns equally-sized ordered groups from a numeric vector — for example, quintiles or deciles.
A more primitive version of the function appeared in a blog post called ”Miles of iles”. There is some discussion there of alternative functions.
writeExpectTest
While I was preparing the update to BurStMisc, I found that automating the writing of some tests using the testthat package was both warranted and feasible. The writeExpectTest function is the result.
corner
The generally useful function that was already in BurStMisc is corner. This allows you to see a few rows and columns of a large matrix or data frame — or higher dimensional array.
Epilogue
I want to spread the news
That if it feels this good getting used
You just keep on using me
— from ”Use Me” by Bill Withers
jun 25, 26
Towards the basic R mindset. Previously The post ”A first step towards R from spreadsheets” provides an introduction to switching from spreadsheets to R. It also includes a list of [...]
jun 25, 26
I failed to find Kahneman’s book in the economics section of the bookshop, so I had to ask where it was. ”Oh, that’s in the psychology section.” It should have [...]
jun 25, 26
An introductory comparison of using the two languages. Background R was made especially for data analysis and graphics. SQL was made especially for databases. They are allies. The data structure [...]

