decisionSupport {decisionSupport} | R Documentation |
Welfare Decision and Value of Information Analysis wrapper function.
Description
This function performs a Welfare Decision Analysis via a Monte Carlo simulation from input files and analyses the value of different information about the input variables. This value of information analysis can be done via combined PLSR - VIP analysis or via IndividualEVPI calculation. Results are saved as plots and tables.
Usage
decisionSupport(
inputFilePath,
outputPath,
welfareFunction,
numberOfModelRuns,
randomMethod = "calculate",
functionSyntax = "data.frameNames",
relativeTolerance = 0.05,
write_table = TRUE,
plsrVipAnalysis = TRUE,
individualEvpiNames = NULL,
sortEvpiAlong = if (individualEvpiNames) individualEvpiNames[[1]] else NULL,
oldInputStandard = FALSE,
verbosity = 1
)
Arguments
inputFilePath |
Path to input csv file, which gives the input |
outputPath |
Path where the result plots and tables are saved. |
welfareFunction |
The welfare function. |
numberOfModelRuns |
The number of running the welfare model for the underlying Monte Carlo simulation. |
randomMethod |
|
functionSyntax |
|
relativeTolerance |
|
write_table |
|
plsrVipAnalysis |
|
individualEvpiNames |
|
sortEvpiAlong |
|
oldInputStandard |
|
verbosity |
|
Details
This function integrates the most important features of
this package into a single function. It is wrapped arround the functions
welfareDecisionAnalysis
, plsr.mcSimulation
,
VIP
and individualEvpiSimulation
.
Combined PLSR - VIP Analysis
The combined Partial Least Squares Regression (PLSR) and Variables Importance in Projection
(VIP) analysis is implemented via: plsr.mcSimulation
and
VIP
.
IndividualEVPI Calculation
Implementation: individualEvpiSimulation
See Also
mcSimulation
, estimate
, estimate_read_csv
,
plsr.mcSimulation
, VIP
,
welfareDecisionAnalysis
, individualEvpiSimulation
,
decisionSupport-package