Skip to content
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

Allow option for notes under table in "etable" #25

Closed
bgchamps opened this issue Jun 24, 2020 · 4 comments
Closed

Allow option for notes under table in "etable" #25

bgchamps opened this issue Jun 24, 2020 · 4 comments

Comments

@bgchamps
Copy link

@bgchamps bgchamps commented Jun 24, 2020

It would be nice to directly include notes under the table, ala the "notes" option in stargazer.

@lrberge
Copy link
Owner

@lrberge lrberge commented Jun 24, 2020

Sure, it's no big deal to implement it.

Note that recently a broom method has been implemented for fixest objects by @karldw (see #21). It allows to leverage generalist methods to export estimation results. Notably the excellent modelsummary.

Currently, it's only included in broom's development version, but before it gets to CRAN the following code should work:

library(broom) ; library(dplyr) ; library(modelsummary)
source("https://github.com/tidymodels/broom/blob/master/R/fixest-tidiers.R?raw=true")
source("https://github.com/tidymodels/broom/blob/master/R/utilities.R?raw=true")

library(fixest)
est = feols(Sepal.Lengthy ~ Sepal.Width + Petal.Length | Species, iris)
modelsummary(est)
@lrberge
Copy link
Owner

@lrberge lrberge commented Jul 7, 2020

Hi, it's done (note that I didn't implement the stars thing). The dev version is not yet stable, but etable has been pimped substantially.

@lrberge lrberge closed this Jul 7, 2020
@bgchamps
Copy link
Author

@bgchamps bgchamps commented Jul 7, 2020

@karldw
Copy link

@karldw karldw commented Jul 10, 2020

broom 0.7.0 is out today!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
3 participants
You can’t perform that action at this time.