report icon indicating copy to clipboard operation
report copied to clipboard

:scroll: :tada: Automated reporting of objects in R

Results 121 report issues
Sort by recently updated
recently updated
newest added

From the README: ``` ## We fitted a linear model (estimated using OLS) to predict Sepal.Length with Species (formula = ## Sepal.Length ~ Species). Standardized parameters were obtained by fitting...

docs :books:

I'd say `report` should just ignore list columns since not sure what we can _report_ about columns like these. ``` r library(dplyr) library(report) #> report is in alpha - help...

bug :bug:
what's your opinion :hear_no_evil:

As the text (especially the fulltext) can become a bit lengthy (for instance in the case of Bayesian models), I am wondering about the possibility of adding some "contrast" to...

feature idea :fire:
help us :eyes:

**Describe the solution you'd like** Don't use the wording "significant" when describing p-values. See the American Statistical Association statement (https://www.tandfonline.com/doi/full/10.1080/00031305.2016.1154108) and this Nature paper (https://www.nature.com/articles/d41586-019-00857-9) for more detail. This is...

what's your opinion :hear_no_evil:

I think we can / should improve the output-style from reporting model tables. Currently, it is: ``` r library(report) library(magrittr) data(iris) lm(Sepal.Length ~ Petal.Length + Species, data=iris) %>% report() %>%...

feature idea :fire:
enhancement :boom:

``` r library(report) model ---------------------------------------------------------------------------------------- #> (Intercept) | 3.68 | [ 3.47, 3.89] | < .001 | 1.50 | #> Petal.Length | 0.90 | [ 0.78, 1.03] | < .001...

enhancement :boom:

We do this only for Pearson's. But `correlation` also returns CIs for these other measures that we can utilize for reporting.

enhancement :boom:

Initially, I wanted report to assemble the parameters table with the effect size table for parameters. Currently, the effect size table is retrieved via `effectsize()` and later assembled [here](https://github.com/easystats/report/blob/master/R/utils_combine_tables.R#L2). But...

question :interrobang:

I have also a more complex output in mind, like the stata output: ![image](https://user-images.githubusercontent.com/26301769/108620627-a5445000-742d-11eb-9511-adc6f37b08c1.png) _Originally posted by @strengejacke in https://github.com/easystats/parameters/issues/421#issuecomment-782824935_

enhancement :boom:

**Question and context** Hi, I've been using a `tidymodels` approach to perform a logistic regression. The `glm` model is stored in various objects, including the top-level `workflow`. This has some...

enhancement :boom:
low priority :sleeping: