The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

sensitivity-cloud

library(agena.ai)

Setting the working directory to where we have the Models folder if needed

#setwd("/Users/user/repos/api-r")

Importing an existing model from a .cmpx file

model <- from_cmpx("CarCosts.cmpx")
network <- model$networks[[1]]

Creating a new dataSet in the model for sensitivity analysis

model$create_dataSet(id = "sa")

Creating a sensitivity analysis config object which uses all nodes for sensitivity analysis on the node total_cost, to calculate mean and variance results

sa_config <- create_sensitivity_config(
  target="total_cost",
  sensitivity_nodes="*",
  dataset="sa",
  report_settings = list(summaryStats = c("mean", "variance"))
)

Login to the agena.ai cloud servers and running the sensitivity analysis

credentials <- login("test@example.com", "1234567890")

sensitivity_analysis(model, credentials, sa_config)

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.