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.