RC.reproduce {RC} | R Documentation |
This function fetches the meta data of a computation and reproduces the analysis on your local machine.
RC.reproduce(url = "", echo = FALSE, secure = TRUE)
url |
The unique URL of the computation to be reproduced |
echo |
Print intermediary results to screen |
secure |
Check R code against blacklist of potentially dangerous commands |
The object 'a' contains the HTML output of any reproduced computation that was originally generated by an R module (as published on the web). To display the information in the R console it is appropriate to use the RC.print.html(a) command. The reproduced computation may create or change objects in the R session (see RC.demo() for an example).
This function executes R code in your current R session. This implies that objects may be overwritten or changed as a result of using RC.reproduce().
#fetch info about the computations with the 'AS2009' keyword #r <- RC.ls(keyword="AS2009") #reproduce the second computation #RC.reproduce(r$url[2]) #print the output table #RC.print.html(a)