Arnaud Feldmann
Arnaud Feldmann
``` library(tsibble) tibble(value=1:12,key = "all", time = make_yearmonth(2000,1:12)) %>% as_tsibble(index = time, key = key) %>% as.ts #> Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec...
Yearquarter strings usually depend of locale. That is, in my language (French), the dates would often be in in the "2020T4" format (T for _trimestre_) Could it be possible to...
Hi, despite the adding of .start and .end for fill_gaps, there is still no clean way to aggregate. I'd like something like that to work on compatible tsibbles : ```...
``` yearmonth("2021 04")>date("2021/03/01") #[1] TRUE #Warning message: #Incompatible methods (">.vctrs_vctr", ">.Date") for ">" yearmonth("2021 04")>date("2021/04/01") #[1] FALSE #Warning message: #Incompatible methods (">.vctrs_vctr", ">.Date") for ">" yearmonth("2020 04")>date("2021/03/01") #[1] FALSE #Warning...
Hi, If I understand the SQLite doc correctly, there is a function that allows to [clear bindings](https://www.sqlite.org/c3ref/clear_bindings.html) after a reset and hence get a fresh renewed prepared query. Right now,...
### What's your question? Hi, I'm using your extension in a R tutorial for my coworkers : https://github.com/arnaud-feldmann/formation_r_drieets_prog_fonctionnelle/ I'm willing to respect your rights. However, I don't know how to...
Hi, Thanks for your wonderful bar. Under Freebsd there's no SIGRTMIN. Could it be another way of communicating with the custom modules? Otherwise, it works wonderfully, thanks !