Skip to content

parsing speed

1 message · Liaw, Andy

#
I think one example of this is using the formula interface to fit models on
large data sets, especially those with tons of variables.  Some model
fitting functions have the default interface f(x, y, ...), along with a
formula method f(formula, data, ...).  If x has lots of variables (say over
1000), using the formula interface can take several times longer than
calling the "raw" interface directly.

Andy