Eric Green
Eric Green
I posted a replication attempt to SO that a user named Nicolás Velásquez [solved with this answer](https://stackoverflow.com/a/66325506/841405).   He describes his approach of drawing two `geom_text_repel()`s as a "lazy...
Excited to see lots of [work on the `bs4_book` output format](https://github.com/rstudio/bookdown/issues/1123)! I think it's pretty slick. I [posted a note to RStudio Community](https://community.rstudio.com/t/modify-bs4-book-to-enable-tufte-style-margin-notes/100747) a few days ago looking for some...
I'm using bookdown to create a Tufte-style PDF with margin notes. I use `full_width = TRUE` to constrain the table to the main column and prevent it from bleeding into...
The codebook table is a great feature of the Rmarkdown report. It's width is not bound to the page, however. This means that scrolling right moves the entire page and...
Great stuff with `tibbletime`. How can I use `filter_time()` to get a specific time window each day? For instance, just the hours of 02:00 to 04:00? ``` example
I'm writing a tufte bookdown chapter and have a few instances where margin content overlaps (especially with full width tables). The latex tufte manual suggests that I can set an...
Loving how the html is rendered in the `grid-layout` branch. A few questions: 1. What would be the correct custom css style to change the font size and style for...
I'm trying to embed a webpage in a book [as shown here](https://bookdown.org/yihui/bookdown/web-pages-and-shiny-apps.html), but the frame does not appear in the html output. Any ideas? ```` ```{r test, echo=FALSE} knitr::include_app("https://yihui.shinyapps.io/miniUI/", height...
Is it possible to limit the levels of the table of contents? I tried setting `toc_depth: 1`, but my TOC still displays 2 levels. I'd prefer to show only 1...
The `nhanes_2010` dataset has 1417 obs, but the summary table will indicate a total of 940 obs (complete cases) unless we specify `na.rm=FALSE`. The documentation says this about the `na.rm`...