rstring {R.rsp} | R Documentation |
Evaluates an RSP string and returns the generated string
Description
Evaluates an RSP string and returns the generated string.
Usage
## Default S3 method:
rstring(..., file=NULL, path=NULL, envir=parent.frame(), args="*", verbose=FALSE)
Arguments
... |
A |
file , path |
Alternatively, a file, a URL or a |
envir |
The |
args |
A named |
verbose |
See |
Value
Returns an RspStringProduct
.
Author(s)
Henrik Bengtsson
See Also
To display the output (instead of returning a string), see
rcat
().
For evaluating and postprocessing an RSP document and
writing the output to a file, see rfile
().
Examples
x <- rstring("A random integer in [1,100]: <%=sample(1:100, size=1)%>\n")
cat(x)
# Passing arguments
x <- rstring("A random integer in [1,<%=K%>]: <%=sample(1:K, size=1)%>\n", args=list(K=50))
cat(x)
[Package R.rsp version 0.46.0 Index]