Closed ghost closed 11 years ago
Currently bigglm does not support x ~ . syntax for the formula. This can be fixed by changing line 23 from terms<-terms(formula) to
x ~ .
terms<-terms(formula)
if (!is.null(data)) { terms <- terms(formula, data = data) } else { terms <- terms(formula) }
Thanks! I put it on github now. It will be part of a new release to CRAN.
Currently bigglm does not support
x ~ .
syntax for the formula. This can be fixed by changing line 23 fromterms<-terms(formula)
to