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. ______________________________________________ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel