-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Saving LinearModel without data #333
Comments
I guess such objects would have to store a few statistics that cannot be computed without the data, or they wouldn't be very useful: that includes deviance, log-likelihood, p-values... There could be an |
I agree. |
I think this is a good idea. We could also add a method that contains just the information printed in |
I've been tinkering with something similar for MixedModels.jl in the form of a We could probably define a sensible |
Seems like the existing |
I would find it useful to implement the analogue to Matlab's CompactLinearModel. This is essentially a
LinearModel
without data.I envision the following (common?) workflow:
One could, of course, extract selected information from each LinearModel and store it in a different format. The drawback would be that packages such as
PrettyTables
expect LinearModels as inputs.The text was updated successfully, but these errors were encountered: