Description Usage Arguments Examples
The rprintv
function applies variable-based formatter to
transform the given character vector to specific texts with
named variables replaced by a given set of values in correct
formats.
1 |
x |
The character vector or list to be transformed |
... |
The arguments that specify the set of values to be placed |
1 2 3 4 5 6 7 8 9 | ## Not run:
# Format a single-entry character vector with variable mechanism
rprintf('Hello, $name', name='world')
rprintf('$name ($age years old)',name='Ken',age=24)
rprintf('He is $age but has a height of $height:.2fcm',age=18,height=190)
rprintf('$a, $b:.1f, $c:+.2f, $b, $a:.0f',a=1.56,b=2.34,c=3.78)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.