Etienne Bacher

Results 284 comments of Etienne Bacher

@gorcha I see the GraphQL queries, but I don't know how to reproduce them. Some elements look random, like the `datafileId`. As you said, the NSD API docs are not...

Thanks a lot for all these explanations! I don't have the skills to make this work, I never used GraphQL before so I've no idea where to start. I'll try...

Hello, any news about this? @gorcha did you have the occasion to try making the graphql requests from R? Or is the plan to use a separate repo to host...

@jhelvy I turned my raw html in two small functions that you can see [here](https://github.com/etiennebacher/ebmisc/blob/master/R/grid_projects.R). I used these two functions [here](https://github.com/etiennebacher/personal_website_distill/blob/master/projects.Rmd). The CSS for the cards is [here](https://github.com/etiennebacher/personal_website_distill/blob/master/custom.css). However, I...

Small bump on this, I came from Mastodon to see the docs of 0.1.7, but the website isn't up to date ;)

I don't know for the first two points but to check whether you have unwanted columns, you can use `names(.)` in the rule: ``` r library(validate) test name items passes...

Hi @markvanderloo, just wondering if you have an expected timeline for a CRAN release. I see that you mentioned that a few revdeps needed to adapt at the end of...

Shorter reprex: ```r s = pl$Series(values = 1)$to_struct() s$map_elements(\(x) x) Error in .pr$Series$map_elements(self, fun, datatype, strict_return_type, : user function panicked: map_elements ```

Turns out `to_struct()` shouldn't be available for all Expr, only for those in the `list` and `arr` subnamespaces: https://docs.pola.rs/py-polars/html/search.html?q=to_struct --- Doesn't solve the issue though: ``` r library(polars) pl$DataFrame(mtcars)$ select(pl$struct(c("mpg",...

Thanks for the report, do you want to make a PR for this? I think this should be solved using `path.expand()` but we need to ensure it works correctly when...