| read_sai | R Documentation |
read_sai() extracts all the information of a SA-item (see details).
read_sai(jsai)
jsai |
Java SA-item object. |
A SA-item contains more information than just the results of an estimation.
Full information is extracted with the read_sai() function that
returns a list of 5 objects:
ts: raw time series.
referenceSpec: initial specification. Reference when refreshing and relaxing constraints.
estimationSpec: specification used for the current estimation.
resultSpec: specification containing all parameters stemming from estimationSpec (fully identified model).
results: results of the estimation.
a list
# Load a Workspace
file <- system.file("workspaces", "workspace_test.xml", package = "rjd3workspace")
jws <- jws_open(file)
# Select SAProcessing
jsap1 <- jws_sap(jws, 1)
# Select SA-item (as java object)
jsai1 <- jsap_sai(jsap1, 3)
# read SA-item
read_sai(jsai = jsai1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.