Chop It: Look up the Generating Data Frame Columns of a Formula Term
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
We the moody Gucci, Louis and Pucci men
Escada, Prada
The chopper it got the Uzi lens
Bird’s-eye view
The birds I knew, flip birds
Bird gangs, it was birds I flew
Say you use the base #rstats lm()
command
lm(data=dat_foo[,c('y','x1','x2')],y ~ x1 + x2 + x1:x2)
I want to be able to map the single formula term x1:x2
to the two
‘generating’ columns dat_foo[,c('x1','x2')]
In words, for a term in a ?formula
, lookup the involved ‘root’ columns of the data frame inside the formula’s associated environment.
I feel like this mapping must exist under the lm()
hood somewhere. Various stackoverflow Q+A’s about formulas never directly talk about this lookup. This Rviews blog post sums up the formula landscape pretty well. But there does not seem to be a convenient expose of the explicit lookup/hash table of the df to term mapping.
I have to hand roll the few lines of code to implement the hash / lookup table myself. My solution is ‘loose’ since it chops up the terms in the formula, then creates many sub-formulas for each chopped term.
Is there a better / preferred way?
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.