dmurdoch

Results 121 comments of dmurdoch

Adding `unloadNamespace("kableExtra")` to the setup code chunk before the first use of anything from the package fixes it for me.

I took a look, and couldn't spot a simple one. `kableExtra` needs to call the `usepackage_latex` functions once per document, but I don't think `knitr` provides a hook that is...

Some `kableExtra` functions add `"kableExtra"` to the class of the object being printed, and then the `knit_print.kableExtra` method will be called. Probably the conceptually easiest way to implement this would...

Does this pkgdown issue solution help: https://github.com/r-lib/pkgdown/issues/323#issuecomment-580223223 ? On 02/10/2022 1:23 p.m., Michael Friendly wrote: > This is a question I posted on SO, > https://stackoverflow.com/questions/73911723/how-to-have-pkgdown-use-figure-numbers-and-cross-references-in-vignettes > > but without...

A workaround that `ggvoronoi` has adopted (https://github.com/garretrc/ggvoronoi/pull/16) is to use `inset_ggmap` instead of the `base_layer` argument to `ggmap()`.

This is the same issue as https://github.com/thomasp85/ggraph/issues/199 . I don't know which `make_unique` implementation is preferable; mine is faster on `rep(1, 30)`, but `ggraph:::make_unique` is a lot faster on `1:30`,...

This happens because you didn't specify alignment in the `linebreak` call. Probably missing `align` in that call should default to `"l"` instead of cycling through all choices.

I think you just add extra parameters, e.g. `mutate_all(linebreak, align = "l") %>% ...` .

The tests don't currently pass on my system, because of unrelated issues in the Shiny tests.

I should also mention the PR I submitted to fix this: https://github.com/r-lib/pkgdown/pull/2063 .