Open FrieseWoudloper opened 4 years ago
Maybe a nice addition to 1.1.3:
You can also write the model object to an .Rds file and save it for later use.
write_rds(model, 'model.Rds')
After a restart of R you can get the model object back by reading the Rds file:
m <- read_rds('model.Rds') summary(m)
You're welcome to fork and open a PR :)
Maybe a nice addition to 1.1.3:
You can also write the model object to an .Rds file and save it for later use.
After a restart of R you can get the model object back by reading the Rds file: