read_workspace | R Documentation |
Functions reading all SA-Items from a Workspace (read_workspace()
) or a SA-Processing (read_sap()
)
and allowing to access them as R lists.
Whereas functions jread_sap()
and jread_workspace()
only return corresponding Java objects
read_sap(jsap)
jread_sap(jsap)
read_workspace(jws, compute = TRUE)
jread_workspace(jws, compute = TRUE)
jsap |
java SA-Processing. |
jws |
java Workspace. |
compute |
compute or not the workspace (to get the estimation results). |
list or java object
# Load workspace
file <- system.file("workspaces", "workspace_test.xml", package = "rjd3workspace")
jws <- jws_open(file)
# Read workspace
jread_workspace(jws, compute = FALSE)
rws <- read_workspace(jws)
# Read sap
sap<-jws_sap(jws,1)
jread_sap(sap)
read_sap(sap)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.