Skip to content
Prev 286672 / 398502 Next

update.formula has 512 char buffer?

Your code seems to be screwed up. There are no (small) size
limitations on formulas (afaik).

The following worked fine for me:

x <- paste("x",1:100,sep="",collapse = " + ")
part1 <- paste("y",x,sep=" ~ ")
part2 <- paste("f",1:50, sep="",collapse = " + ")
fml <- formula(paste(part1,part2,sep=" | "))

Cheers,
Bert

On Tue, Feb 28, 2012 at 11:11 AM, Chris Hane
<christopher.a.hane at gmail.com> wrote: