Jim Hester
Jim Hester
lookup was created explicitly to automate the process outlined in this document, so maybe we should add a link to it here as well?
You should be able to avoid this by setting the TZ environment variable explicitly e.g. https://github.com/rocker-org/rocker-versioned/issues/89
I am not sure the RStudio ones actually exist currently, so I think relying on the R-hub ones seems like the best plan in the short term.
The repo is here FWIW https://github.com/rstudio/r-docker, they are versioned by OS and R version, so you can use rstudio/r-base:3.5-xenial for R 3.5 on xenial etc.
We could use syntax similar to [figures](https://cran.r-project.org/doc/manuals/r-release/R-exts.html#Figures) ``` r \figure{logo.jpg}{Our logo} ``` E.g. ``` r #' @param x \assert{is.numeric}{x must be a number} Blah-blah... ```
Possible syntax ideas ``` r # this does not parse f Error: unexpected '{' in "f
Maybe just redefining `return()` is simpler, I guess there would be slightly more overhead in the case where there were no returns in the functions. Another syntax alternative is putting...
One downside to both the approaches with the check right after the arguments is our definition of `?` when _not_ using argufy has to change because the real statements will...
The easiest thing to do is just construct a call to the checking function with whatever is in the body. If it is bare it is directly passed, if it...
Good points, using `withVisible` should allow us to pass on the visibility. The `parent.frame` should be OK, but I the call stack will be affected of course. I don't see...