RC.reproduce {RC}R Documentation

Reproduce a computation

Description

This function fetches the meta data of a computation and reproduces the analysis on your local machine.

Usage

RC.reproduce(url = "", echo = FALSE, secure = TRUE)

Arguments

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

Value

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).

Warning

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().

Examples

#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)

[Package RC version 1.0.1.27 Index]