Tim Taylor
Tim Taylor
I load devtools automatically in my R profile and always check my site rendering with `build_site()`. By default this wrapper suppresses output (`quiet = TRUE`). Unfortunately this means you can...
Would there be interest in providing a function that generates an explicit (e.g. defaults explicitly listed and commented) `.lintr.R` configuration. These could be pre-populated templates within the package or generated...
Would you consider allowing users to specify the use of the help pages at https://search.r-project.org as opposed to https://rdrr.io/ (or perhaps any arbitrary alternative)? E.g. it would be nice if...
I've no idea how fiddly this would be but do you think there's any possibility to populate the changelogs for the rpms in copr. E.g. using the ouput from news...
Currently if you have multiple builds of R installed on your system then, irrespective of the one being run, `build_install_test()` will call in to the default `R`. I ran in...
This ensure that the version of R called matches the one you are in. Mainly relevant when you have multiple versions of R installed (e.g. R and R-devel). I've not...
Currently this does not seem to work ``` r (x [1] "1969-12-30" # correct as.POSIXlt(x)$mday #> [1] 30 # wrong ymd::mday(x) #> [1] 31 ``` Created on 2025-04-24 with [reprex...
Cool package. Would you consider adding [clock](https://cran.r-project.org/package=clock) to the comparisons where appropriate? I've not got a rust toolchain set up to do the comparison with ymd but, as an example....
Will you consider doing beta (testing) periods for ggplot2 releases? I've found in the past with ggplot2 that my CI hasn't been good enough to catch small changes (e.g. deprecation...
Calling `str()` on a collected duckplyr_df is very slow on first use. I assumed collect fully materialized the object. Is this a misunderstanding on my part? ``` r packageVersion("duckplyr") #>...