dmurdoch
dmurdoch
The official release of FTGL hasn't been updated in a long time, but there are various bug fixes available on Github. Do any of those matter to rgl? It would...
The `rgl.*` functions are based on a different mental model of what rgl programming should be relative to the `*3d` functions, which somewhere closer to base graphics, with a bit...
As reported here: https://stackoverflow.com/q/72075707/2554330, `fviz_nbclust` fails on some datasets. This patch corrects the test of the class of `best_nc` to use `inherits()`, rather than comparing a vector of classnames to...
[This SO post](https://stackoverflow.com/q/73611678/2554330) describes the issue and a workaround. The problem is that the `usepackage_latex()` calls in `zzz.R`: https://github.com/haozhu233/kableExtra/blob/292f60715959ea952ff25a8aedfd782793b15f7b/R/zzz.R#L5-L18 won't be executed if `kableExtra` is already loaded when `rmarkdown::render()` is...
## Reproducible Example Example: ```r reprex::reprex({ library(ggmap) library(ggplot2) ggmap(get_map(), base_layer = ggplot()) }, si = TRUE) ``` This example generates a warning if you run it: ``` Warning message: In...
I just noticed this while trying to debug a LaTeX error in an R Markdown document: if there's a LaTeX error, the `.md` file isn't kept. For example: ```` ---...
In my recent PR https://github.com/igraph/rigraph/pull/1021 to `igraph`, the coverage tests said that the testing didn't include the changed code, even though it did. I put together a simple package with...
I have just updated Chrome, and RSelenium has stopped working. Running `rsDriver` fails as shown below. ### Operating System: MacOS 12.7.3 ### Selenium Server version (selenium-server-standalone-3.0.1.jar etc.) Not sure how...
The `scales::label_percent()` function and several other formatting functions have a `...` argument, documented as "Other arguments passed on to [base::format()](http://localhost:23621/library/base/help/format)." Normally that's the way I'd document `...`, but in this...