biglm
biglmfreq(formula, data, freq = NULL)# S3 method for biglmfreq
coef(object, ...)
# S3 method for biglmfreq
predict(object, ...)
# S3 method for biglmfreq
print(x, ...)
# S3 method for biglmfreq
update(object, ...)
formula
and freq
biglmfreq
objectbiglmfreq
objectbiglmfreq
object.It only computes the coefficients of the linear model.
…
should be a data frame when predict
. See Examples
…
should be a data frame when update
. See Examples
biglm
, make.readchunk
mt <- biglmfreq(Sepal.Length ~ Sepal.Width, iris)
coef(mt)
chunk1 <- iris[1:30,]
chunk2 <- iris[-c(1:30),]
mf1 <- biglmfreq(Sepal.Length ~ Sepal.Width, chunk1)
mf2 <- update(mf1, chunk2)
predict(mf2, iris)
Run the code above in your browser using DataLab