Description Usage Arguments Value See Also Examples
View source: R/calc_expectedValues.R
Results are returned for the nodes labelled logical in decision tree. Require at least one logical node.
1 2 3 4 5 6 7 8 | MonteCarlo_expectedValues(osNode, n)
## Default S3 method:
MonteCarlo_expectedValues(osNode, ...)
## S3 method for class 'costeffectiveness_tree'
MonteCarlo_expectedValues(osNode,
n = 100)
|
osNode |
A data.tree object with class costeffectiveness_tree |
n |
Number of simulations |
list containing array of n sets of expected values and sampled nodes full names
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
## read-in decision tree
osNode <- costeffectiveness_tree(yaml_tree = "raw data/LTBI_dtree-cost-distns.yaml")
print(osNode, "type", "p", "distn", "mean", "sd")
## calculate a single realisation expected values
osNode <- calc_expectedValues(osNode)
print(osNode, "type", "p", "distn", "mean", "sd", "payoff")
## calculate multiple realisation for specific nodes
MonteCarlo_expectedValues(osNode, n=100)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.