To discuss editing the R tag Docs, visit the R chat.
Most of the guidance for creating good examples for Q&A carries over into the documentation.
Make it minimal and get to the point. Complications and digressions are counterproductive.
Include both working code and prose explaining it. Neither one is sufficient on its own.
Don't rely on external sources for data. Generate data or use the datasets library if possible:
library(help = "datasets")
There are some additional considerations in the context of Docs:
Refer to built-in docs like ?data.frame
whenever relevant. The SO Docs are not an attempt to replace the built-in docs. It is important to make sure new R users know that the built-in docs exist as well as how to find them.
Move content that applies to multiple examples to the Remarks section.
If you want your code to be copy-pastable, remove prompts such as R>
, >
, or +
at the beginning of each new line. Some Docs authors prefer to not make copy-pasting easy, and that is okay.
Console output should be clearly distinguished from code. Common approaches include:
#
or ##
starting each line.[1]
to make the output stand out from the input.=
and <-
are fine for assigning R objects. Use white space appropriately to avoid writing code that is difficult to parse, such as x<-1
(ambiguous between x <- 1
and x < -1
)
Be sure to explain the purpose and function of the code itself. There isn't any hard-and-fast rule on whether this explanation should be in prose or in code comments. Prose may be more readable and allows for longer explanations, but code comments make for easier copy-pasting. Keep both options in mind.
Many examples are short enough to not need sections, but if you use them, start with H1.