dmurdoch

Results 80 issues of dmurdoch

In this SO question https://stackoverflow.com/q/65146149/2554330, the poster wants to set a special `slideNumberFormat` to treat a particular slide as the last slide. I can use this format function ``` slideNumberFormat...

When running `rhub::check(platform="macos-m1-bigsur-release")` on a package that has an R Markdown vignette, the package check fails with a subscript out of bounds error. This appears to be a problem on...

bug
next

This was reported on StackOverflow here: https://stackoverflow.com/q/66408402/2554330 . The following code plots the circles in the wrong order, so the overlaps look wrong: ``` r library(tidyverse) library(ggforce) circles

This adds a function `make_unique()` to be used instead of `base::make.unique()` so the ordering of the elements is not changed by `arcPaths`. Fixes issue #224.

As mentioned in Issue #671, the babel Hungarian support in LaTeX adds the macro `\aref` to be like `\ref` but with support for some special Hungarian grammatical constraints. This PR...

feature

This StackOverflow question https://stackoverflow.com/q/70639647/2554330 wanted to use a non-Viridis palette in `spec_color`. This PR adds that as a possibility by adding a `palette` argument to the function.

**Describe the bug** The `kable_styling(font_size = ...)` setting forces the caption size to `font-size: initial !important;`, which is unlikely to be correct. Should it be `inherited` or `inherited !important` instead?...

The `convert` arg of `html_table()` is documented as "If TRUE, will run type.convert() to interpret texts as integer, double, or NA." In fact, I just got caught by the fact...

documentation
table 🏓

The `width` and `height` arguments to `nomnoml()` are described here https://github.com/rstudio/nomnoml/blob/d377a810177bc6bef818ed2120b36dad0a18b139/R/nomnoml.R#L20-L22 as being measured in pixels. Since they are `htmlwidgets` measurements that's how numerical values will be interpreted, but string...

This SO question: https://stackoverflow.com/q/72271331/2554330 had a user who wanted to include Greek letters specified using Unicode escapes in labels in a nomnoml diagram. This PR allows this, by parsing the...