boB Rudis

Results 418 comments of boB Rudis

that was extremely helpful :-) I'm wondering if it might be handy to add this as a Shiny event handler as well. ws is supposed to be event-driven (as you...

That'd be 👍🏽 David! the pkg is def overdue for a CRAN update and i can get that started after the PR. #ty! On Sat, Sep 3, 2022 at 9:30...

Many thanks for the report. I'll see what hidden API changes occurred and can hopefully wire it back up soon.

Def a worthy enhancement. In the interim (before I get to it) give https://github.com/thomasp85/ggforce/blob/master/R/bspline.R a đź‘€ as an alternative.

Windows can do some weird things w/r/t fonts. Can you paste the output of `sessionInfo()`? I may be able to recreate the environment in a VM and troubleshoot.

Thx for trying out the pkg and taking the time to file an issue/question! Can you post the output of `sessionInfo()`?

In retrospect, that _may_ not matter. Please try: --- title: "hrbrthemes testbed" output: pdf_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ```{r message=FALSE} library(hrbrthemes) library(tidyverse) library(Cairo) extrafont::loadfonts() ``` ###...

And, I just pushed a change that makes this easier. Assuming RStudio use, - File -> New File -> R Markdown - From Template - ipsum PDF Template Will start...

This was a rly helpful question and will likely ease the pain of many others. If you're inclined, would you mind forking the pkg and adding yourself to the `DESCRIPTION`...

I usually do: ```r ggplot(mtcars, aes(wt, mpg)) + geom_point() + labs(title="Roboto Condensed", subtitle="This is a subtitle") + theme_ipsum_rc() -> gg ggsave("plot.pdf", gg, device = cairo_pdf) ``` when targeting PDF