Etienne Bacher

Results 284 comments of Etienne Bacher

I suspect it's something internal to github actions, they had some issues recently (not related to badges, but there could be some caching issues on their side): https://www.githubstatus.com/history

By the way, all functions in `R/methods.easycorrelation.R` should be properly documented, not just `summary.easycorrelation()` (but @Thibaultfq feel free to document as many as you want if you want to contribute)

Hi, I came across this issue a bit randomly but thought I'd give it a try. I use the text preparations steps described [here](https://cengel.github.io/R-text-analysis/textprep.html) to get a large enough word...

This is not related to `pivot_longer()`, it's due to `eval_select_pos(data, substitute(cols))`. Here's an example showing the same error with `rename_with()`: ``` r suppressPackageStartupMessages(library(poorman)) d = data.frame(X=1:5, Y1=runif(5), Y2=runif(5)) nd =...

Can be fixed by adding ```r if (is.character(pos)) { pos

Maybe related: ``` r suppressPackageStartupMessages(library(poorman)) iris Sepal.Length #> 1 5.1 #> Sepal.Width #> 1 3.5 #> Petal.Length #> 1 1.4 #> Petal.Width #> 1 0.2 #> Species #> 1 setosa...

Thanks for opening the PR. As you can see there are a few things related to `get_data()` that need to be fixed for `fixest_multi`. But even for simple `fixest` models...

> We need the original dataset used to fit the model, and not the model frame, since the latter often includes transformations. For example, if you want to do predict(model,...

No it's not needed for the next release, it can wait for a future one, I'm not sure exactly when I'll rework on this

Actually it's not that easy because `fixest_multi` models can have several responses (as in the example above) but also a lot of different predictors. For example, `fixest` provides the utility...