run_model {pysd2r}R Documentation

Runs a simulation model

Description

run_model() calls run in pysd and returns all the simulation output in tidy data format (tibble)

Usage

run_model(o)

Arguments

o

is the ipysd S3 object

Details

As it's a generic function, this call is dispatched to run_model.isdpy

Value

tibble containing the simulation results

Examples

## Not run: 
target <- system.file("models/vensim", "Population.mdl", package = "pysd2r")
py <- pysd_connect()
py <- read_vensim(py, target)
results <- run_model(py)

## End(Not run)

[Package pysd2r version 0.1.0 Index]