Matthew Simonson
Matthew Simonson
The margins() function returns an error when a `svyglm` object has omitted observations from the original data due to missingness. It appears to have trouble reconciling the number of rows...
The `fixest` package which came out last year has been a real boon to researchers using regression, and for the most part, it plays well with `jtools` (this is important...
Renaming (and filtering out) coefficients in `plot_summs()` and `export_summs()` is already straightforward, but it could be made less cumbersome through partial string matching. Consider your example from the `plot_summs` documentation...
The documentation claims to be able to handle `svyglm` models from the survey library, and indeed, the `prediction()` does calculate point estimates and standard errors. However, the library seems unable...
I love `etable`'s new `export` argument, but as far as I can tell from the documentation and testing it out, it only accepts a file path, not a file name....
Would it be possible for you to add a function to extract the name of the dependent variable? Right now I use `str_split(formula(model), "~")[[2]]` but it would be nice to...
Normally when using ggplot, we can tell omit an axis label using `labs(x = element_blank())` However, when we switch from a standard theme to its md_theme equivalent, we get the...