dmurdoch

Results 80 issues of dmurdoch

I am writing a parser for LaTeX code, and I'm hoping to support UTF-8 input. TeX and LaTeX categorize each input character, and one of the categories is whether it...

If I add a new function to my package but forget to add it to `_pkgdown.yml`, then the pkgdown build on Github will fail. It would be nice if one...

No commits for two years. Still using `wdman`, which also appears abandoned. What are the alternatives?

It's been two years since the last commit. wdman hasn't worked properly on MacOS with Chrome for most of that time, and there's been PR #39 sitting there unmerged. Has...

If I add a new function to my package but forget to add it to `_pkgdown.yml`, then the pkgdown build on Github will fail. It would be nice if one...

documentation

Summary: I suggest adding two environment variables to facilitate links between help pages and vignettes. Background: I'm currently revising documentation in rgl, and want to improve the links from vignettes...

linking :paperclip:
documentation

The suggestion is to allow a meta option like `skip = c("filename.R")` which would make Roxygen completely ignore that source file. (It might make sense to use a regular expression,...

Adds support for litedown from rgl. Currently needs unreleased versions of litedown and htmlwidgets: ``` remotes::install_github("dmurdoch/litedown@htmlwidgets") remotes::install_github("dmurdoch/htmlwidgets@litedown") ``` See https://github.com/yihui/litedown/pull/86 and https://github.com/ramnathv/htmlwidgets/pull/493

These StackOverflow questions: https://stackoverflow.com/questions/76125409/why-is-the-regression-line-equation-not-correct and https://stackoverflow.com/questions/79810411/r-stat-regline-equation-doesnt-match-stat-smooth-line point out that `stat_regline_equation(formula = y ~ poly(x, 2))` displays the wrong formula. Here's the full example from the second one: ``` library(tidyverse) library(ggpubr)...