We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Code to reduce the size of a model object from lfe::felm():
small_felm <- function(m){ m$fe <- NULL m$residuals <- NULL m$r.residuals <- NULL m$fitted.values <- NULL m$response <- NULL m$cfactor <- NULL m$inv <- NULL m$STATS$promotion <- NULL m$clustervar <- NULL m }
Thanks to @adamlauretig
The text was updated successfully, but these errors were encountered:
Just a note, you'll probably want to pass keepX = FALSE, keepCX = FALSE to the felm when you're fitting the model, if possible.
keepX = FALSE, keepCX = FALSE
felm
Sorry, something went wrong.
No branches or pull requests
Code to reduce the size of a model object from lfe::felm():
small_felm <- function(m){
m$fe <- NULL
m$residuals <- NULL
m$r.residuals <- NULL
m$fitted.values <- NULL
m$response <- NULL
m$cfactor <- NULL
m$inv <- NULL
m$STATS$promotion <- NULL
m$clustervar <- NULL
m
}
Thanks to @adamlauretig
The text was updated successfully, but these errors were encountered: