broom icon indicating copy to clipboard operation
broom copied to clipboard

Convert statistical analysis objects from R into tidy format

Results 18 broom issues
Sort by recently updated
recently updated
newest added

tidy.lm and tidy.glm use summary(x)$coefficients, then join with coef(x) to handle the case where the fit is rank deficient and some terms with NA coefficients are missing from summary(x)$coefficients. However,...

https://github.com/tidymodels/broom/blob/1cc3a172ef9ea2334b13db9abf480f78b1388fd1/R/utilities.R#L224-L227 Just a small typo: the fixed effect panel model, for which `stats::predict()` returns incorrect values, is called by `plm(..., model="within")` - not `plm(..., model="pooling")`

`broom::augment` errors for `plm`'s first-difference (FD) models as these models are somewhat special (they compress data for estimation, thus the residuals are shorter then number of observations). Please see https://stackoverflow.com/q/72266256/4640346...

## The problem The p-value reported by `tidy.svyglm()` does not match the confidence interval when the `ddf` argument is provided (and is different from the default denominator degrees of freedom,...

Hi! I was checking `augment` to compute intervals, and wanted to use different confidence levels. I presumed this would be done via something like `conf.level=0.9`, thinking about how `predict` is...

This is a pull request for https://github.com/tidymodels/broom/issues/543 (also general strict tests issue https://github.com/tidymodels/broom/issues/450). Would appreciate some feedback on how I am setting the default arguments for `augment.betareg` as it feels...

## Feature Add tidiers for objects from the [vegan](https://github.com/vegandevs/vegan) package for community ecology. This reopens old issue #23 Example usage: ```R adonis(dist.jaccard ~ group, data = df.samples.groups) %>% tidy() ```...

For this pull request, the feature requested in issue #989 was included in the package. The `conf.method` parameter was included in the `tidy.glm` method. Its possible values are, the default,...

Hi, There is sometimes a mismatch between the p-values and the confidence intervals in `tidy.glm()` (cf. https://github.com/tidymodels/broom/issues/989 locked). Indeed, the default confidence interval are profile likelihood CIs, which are linked...

`tidy.cch()` is not consistent with other tidiers: - it does not have a `conf.int` argument like other similar tidiers - it does not have an `exponentiate` argument while such option...