Deliver geospatial models direct to decision makers with SyncroSim › Forums › SyncroSim – General Questions and Answers › Export Flow Type/Group › Reply To: Export Flow Type/Group
In the meantime you could use the following code in rsyncrosim to get at your output:
library(rsyncrosim)
# Enter your library path between the quotes (i.e., c:\temp\myLib.ssim)
myLibrary = ssimLibrary(“Insert your library path here“)
# Enter the id for the scenario you want to see results for here or alternatively a vector of scenario id values (i.e., c(1,2,3))
# Note that this is the result scenario inside the results folder for the scenario you ran.
myResultScenarioID = 1
# Get the flow output into a dataframe
myFlowOutput = datasheet(myLibrary, name = “stsimsf_OutputFlow”, scenario = myResultScenarioID)
head(myFlowOutput)