Learn R Programming

rsyncrosim (version 1.5.0)

addon: Addon(s) installed in SsimLibrary or Session

Description

Lists the addon SyncroSim package(s) associated with a SsimLibrary or Session. These packages can only be used to extend existing SyncroSim base packages; as a result they cannot be used to create new SsimLibraries. For example, stsimsf is an addon for stsim which provides optional additional functionality for the base ST-Sim model. More information on addons can be found in the syncrosim documentation.

Usage

addon(ssimObject)

# S4 method for character addon(ssimObject)

# S4 method for missingOrNULL addon(ssimObject)

# S4 method for Session addon(ssimObject)

# S4 method for SsimObject addon(ssimObject)

Value

A data.frame listing the addon(s) in use by the SsimLibrary or Session to which the object belongs.

Arguments

ssimObject

SsimLibrary or Session object. If NULL (default), session() will be used

Examples

Run this code
if (FALSE) {
# Install the base package "stsim"
addPackage("stsim")

# Set the file path and name of the new SsimLibrary
myLibraryName <- file.path(tempdir(),"testlib")

# Set the SyncroSim Session and SsimLibrary
mySession <- session()
myLibrary <- ssimLibrary(name = myLibraryName, session = mySession)

# Retrieve a data.frame of available add-on(s) for the SsimLibrary
addon(myLibrary)
}

Run the code above in your browser using DataLab