Alireza Mahani
2012-Apr-24 16:41 UTC
[Rd] Creating model frame from R formula inside compiled code
I am developing a custom regression package, which accepts a formula object as way of setting up the model matrix and response variable from a data frame. For large data sets, I expect that going through R memory might be too slow, so I'm thinking about reading the data directly into C (e.g. from a database) and then parsing the formula inside of C (by calling an R function such as model.frame()). Is this possible? An alternative solution is to read the large data set into R in chunks, create the model matrix for each chunk and save the matrix chunk to disk, and then load and piece together these chunks inside of C. But my solution seems sub-optimal to me. Any suggestions? Thank you! -- View this message in context: http://r.789695.n4.nabble.com/Creating-model-frame-from-R-formula-inside-compiled-code-tp4584124p4584124.html Sent from the R devel mailing list archive at Nabble.com.
Possibly Parallel Threads
- formula(model.frame(y~.^2, data=d)) does not return formula from terms attribute of the model.frame
- formula(model.frame(..)) is misleading
- model frame and formula mismatch with latent class analysis poLCA
- formula(model.frame(..)) is misleading
- formula and model.frame