Rémi Thériault

Results 253 comments of Rémi Thériault

Is there a reason we don’t keep the flags on the repo (while adding them to .rbuildignore to avoid installing them with the package) for reproducibility? Instead of having to...

If possible, I would rather have my PR merged on main first, so that my own R CMD check stops failing 😬

Right now all your changes from the last two years have been on the dev branch, and the main branch has not been updated for two years. But when people...

Oh, cool, great job! I understand for the non-country flags. Should we mention the licensing thing in the readme as well as in the data set documentation? It's possible to...

Hello everyone, I have the same issue. Here is my contribution: a fully reproducible Rmd example that includes the data :) @mattwarkentin can you try it? https://remi-theriault.com/scripts/priming3.Rmd The resulting encrypted...

Note that changing the dpi to 50, with ```` ```{r setup, include=FALSE} knitr::opts_chunk$set(dpi = 50) ``` ```` Also solves the issue for that file, just like in #7. So folks...

Do you have a toy example for `emmeans`? Because I can show you how but it may not be the use you were looking for...

For example, if the goal is to compute contrasts, you have several options: ``` r library(rempsyc) ``` ## Option 1: `nice_contrasts()` (uses `emmeans` under the hood) ``` r set.seed(100) nice_contrasts(...

What you need to know is that `nice_table` works with dataframes, but `emmeans` does not give a data frame but an object of class `emmGrid`. Here is a reprex of...

In the latest development version (0.1.4.1), `nice_table` will automatically try to convert the provided object to a dataframe (and also rename `t.ratio` to `t`): ``` r library(emmeans) library(rempsyc) lm=lm(mpg~as.factor(cyl)*am, data=mtcars)...