viewResults,Vision-method | R Documentation |
launch a local server to explore the results with a browser.
## S4 method for signature 'Vision'
viewResults(object, port = NULL, host = NULL, browser = TRUE, name = NULL)
## S4 method for signature 'character'
viewResults(object, port = NULL, host = NULL, browser = TRUE, name = NULL)
object |
VISION object or path to an RDS file containing such an object (saved using saveAndViewResults, or directly using saveRDS) |
port |
The port on which to serve the output viewer. If omitted, a random port between 8000 and 9999 is chosen. |
host |
The host used to serve the output viewer. If omitted, "127.0.0.1" is used. |
browser |
Whether or not to launch the browser automatically (default=TRUE) |
name |
Name for the sample - is shown at the top of the output report |
None
## Not run:
vis <- Vision(data = expMat, signatures = sigs)
options(mc.cores=10) # Use 10 cores
vis <- analyze(vis)
saveRDS(vis, 'vision_results.rds') # (Optional) Save results
vis <- viewResults(vis) # Launches dynamic output report
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.