Rémi Thériault

Results 99 comments of Rémi Thériault

Thank you. I read through the help page for `set_caption` as well as the book section you provided. Unfortunately, I am not sure it can help for this specific issue....

In the meanwhile, here is a rather hacky workaround by my friend @Buedenbender: ``` r library(flextable) #> Warning: package 'flextable' was built under R version 4.2.1 table_caption flextable() |> add_header_lines(values...

Thank you for the links and additional details. I see what you mean now; when I open the Word document, the reason it is Cambria, bold, and italicized, is that...

Wooah, that's amazing! Commit [2c58497](https://github.com/easystats/datawizard/commit/2c584977f9aed4027e6cf08a80c57ffbec25fe43) solved my specific use case for `check_outliers` by allowing complete character string usage, and this one solves my general use case as described in the...

`data_match` seems to work well for an exactly equal value, but less so for greater than: ``` r library(datawizard) head(data_match(mtcars[c("mpg", "vs", "am")], data.frame(am = 1), match = "or")) #> mpg...

Ok, I see, thanks. So may I say that the general recommendation is to _not use the select helpers internally for the easyverse_, and just rely on the `regex` argument,...

I need this badly. In my line of research, as effect size, we need to report the _sr2_ (semi-partial correlation squared, also known as the delta R-square)—the variance uniquely explained...

> If I understand correctly, this requires re-fitting the model for each parameter / term. So very costly, and not very practical Is the best way to calculate it by...

Oh dang… I got carried away and submitted a PR already… That said, I just tried `parameters:: dominance_analysis` but seems like it doesn’t support interactions… ``` r # Testing parameters...

Sure. Since they don’t have the same names for the same concepts, I’m unsure of which values to extract. But let’s start with the new one, then let’s look for...