strategy {packDAMipd} | R Documentation |
Definition of strategy - or arm
Description
Definition of strategy - or arm
Usage
strategy(trans_mat, states, name, trans_cost = NULL, trans_util = NULL)
Arguments
trans_mat |
transition matrix |
states |
health states |
name |
name of the strategy |
trans_cost |
values of costs if these are attached to transitions |
trans_util |
values of utility if these are attached to transitions |
Details
Defining strategy keeping all transition matrix, states and names together to use in defining Markov model
Value
object strategy
Examples
tmat <- rbind(c(1, 2), c(3, 4))
colnames(tmat) <- rownames(tmat) <- c("Healthy", "Dead")
tm <- populate_transition_matrix(2, tmat, c(0.5, 0.5, 0, 1))
a <- health_state("Healthy", 1, 1, 0, FALSE)
b <- health_state("Dead", 1, 0.5, 0, FALSE)
states <- combine_state(a, b)
strategy(tm, states, "intervention")
[Package packDAMipd version 1.1.0 Index]