extract.precision.error | R Documentation |
Extract all errors in the error_store
list from PRECISION output produced from either precision.simulate.flex
; reduce the PRECISION output for plotting.
extract.precision.error(precision.obj.path = NULL, precision.obj.name)
precision.obj.path |
the path and document name for the PRECISION object. By default, |
precision.obj.name |
a string for the name of the PRECISION R object. |
a list of lists containing all the errors from the PRECISION object with the same names as the object
## Not run: ## Load + extract errors from a PRECISION object precision.error.df <- extract.precision.error(precision.obj.path = "mypath/precision.result.Rdata", precision.obj.name = "precision.result") ## Load + extract errors from a PRECISION FLEX object precision.flex.error.df <- extract.precision.error(precision.obj.path = "mypath/precision.flex.result.Rdata", precision.obj.name = "precision.flex.result") ## Extract errors from a PRECISION FLEX object previously existed in global env load("mypath/precision.a.Rdata") # load object named "precision.a" in global env precision.flex.error.df <- extract.precision.error(precision.obj.name = "precision.flex.result") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.