4 min read

Picking and researching blog topics about R package development

An alternative title for this post would be “the very meta one”. πŸ˜‰ In this post we shall present some principles and tips used in preparing posts on this blog, that might be useful for problem solving for R package developers and for blogging here or elsewhere.

Choosing and finding relevant topics

A topic is relevant if it’s related to R package development, and if it’s not covered extensively elsewhere: unless a blog post can provide more context, presentation of newer tooling, a new perspective, we are not going to duplicate existing content. We are quite lucky that nothing is too niche for the R-hub blog. 😁 There is also no such thing as a too basic or too advanced topic: for advanced topics, the introduction should make clear it might be of interest to a few readers only; for supposedly basic topics, we hope there will always be something new to some readers.

Compared to extensive documentation like Writing R Extensions, how-to books like the R packages book by Hadley Wickham and Jenny Bryan, and the rOpenSci dev guide, our blog post have more style and structure freedom, can list tools of various maturity levels since it’s expected that blog posts will age and since we are not formulating standards.

Now how do we find inspiration? All authors of posts on this blog develop R packages or spend time helping others do that, therefore they can encounter some tricky problems themselves that can be relevant. Then, reading places where people look for help about package development, namely the R-package-devel mailing list, the R Package Development category of community.rstudio.com, the rOpenSci forum and Twitter can help uncover interesting questions.

A question can be a post topic on its own, as was the case for our post about code generation inspired by a tweet of Miles McBain’s. Or several questions can be put together to knit a post, such as our post about optimal vignette workflows. A question or problem can also just be a pretext for a more general discussion, like in our post about retries in API packages and reinventing the wheel.

Researching topics

How do we prepare content, that’s hopefully not wrong? We obviously only rely on our extensive knowledge. πŸ˜‰ Just kidding, we have many places were to gather ideas from.

First of all, places where people ask for help are also places where other people provide help so it is useful to research old topics. For R-package-devel, the archive on mail-archive.com is much easier to search than the official archive.

Then, we go back to the usual references. Say we are preparing a post about vignettes, then we read the vignettes chapter in the R packages book, we do “Ctrl+F vignette” in Writing R Extensions1 and we re-read the short CRAN policies.

As a side-note this piecemeal consumption of Writing R Extensions is a good way to learn new concepts and to think about them without being overwhelmed. It is very much in line with Julia Evans’ tip to learn on thing at a time, in the debugging zine.

Furthermore, we obviously read source code! πŸ˜‡ We do so on GitHub because it is a handy way to search for occurrences of terms, and because one can then (perma-)link to it. Exploring the GitHub mirror of R source help see how things actually work. The mirror of CRAN packages source maintained by R-hub can help find examples of things in the wild when we can’t think of an example ourselves.

Besides, we use a search engine or pkgsearch to look for packages that are relevant to a topic.

Last but not least, our posts are reviewed by a second pair of eyes at least, which helps limit errors and omissions. Thanks also to the commenters who help complete posts. πŸ™

Conclusion

In this post we explained how we select and explore topics for the R-hub blog. Our sources of inspiration and information are good to know about for problem solving by package developers in general. Feel free to suggest post ideas and information sources in the comments below or in a separate issue.


  1. Writing R Extensions is only available on one page. Colin Fay had made a nice bookdown version out of it but it is not synced. ↩︎