Description Usage Arguments Value Author(s) Examples
Returns a character string containing two times indent
spaces.
1 | indentSpaces(indent = 0)
|
indent |
Desired level of indentation. The number of returned spaces will be twice this argument. |
A character string containing spaces, of length twice indent
.
Peter Langfelder, Peter.Langfelder@gmail.com
1 2 3 4 | spaces = indentSpaces(0);
print(paste(spaces, "This output is not indented..."));
spaces = indentSpaces(1);
print(paste(spaces, "...while this one is."))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.