ignoreDependencies | R Documentation |
Retrieves or sets the Datafeeds to ignore for a Scenario
.
ignoreDependencies(ssimObject) ## S4 method for signature 'character' ignoreDependencies(ssimObject) ## S4 method for signature 'Scenario' ignoreDependencies(ssimObject) ignoreDependencies(ssimObject) <- value ## S4 replacement method for signature 'character' ignoreDependencies(ssimObject) <- value ## S4 replacement method for signature 'Scenario' ignoreDependencies(ssimObject) <- value
ssimObject |
|
value |
character string of Datafeed names to be ignored, separated by commas (optional) |
A character string: Scenario Datafeeds that will be ignored.
# Specify file path and name of new SsimLibrary myLibraryName <- file.path(tempdir(), "testlib") # Set up a SyncroSim Session, SsimLibrary, Project, and Scenario mySession <- session() myLibrary <- ssimLibrary(name = myLibraryName, session = mySession) myProject <- project(myLibrary, project = "Definitions") myScenario <- scenario(myProject, scenario = "My Scenario") # List the Datafeeds to ignore ignoreDependencies(myScenario) # Set Scenario Datafeeds to ignore ignoreDependencies(myScenario) <- "stsim_RunControl,stsim_TransitionTarget"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.