Last chance! 50% off unlimited learning
Sale ends in
Create names for all elements of a transition probability matrix given
names for the health states. This is useful for flattening a transition
probability matrix (rowwise) into a vector and naming the resulting vector.
The name of an element of the flattened vector representing a transition from
the ith state to the jth state is of the form
paste0(prefix, states[i], sep, states[j])
.
tpmatrix_names(states, prefix = "p_", sep = "_")
A character vector containing a name for each element of the transition probability matrix encompassing all possible transitions.
A character vector of the names of health states in the transition matrix.
A prefix that precedes the described transitions between states
used to name a transition. For example, if prefix = "p_"
(and sep = "_"
),
then a transition between state i
and state j
will be of the form
"p_states[i]_states[j]"
; similarly, if prefix = ""
, then the same
transition will be named "states[i]_states[j]"
.
A character string to separate the terms representing
state i
and state j
. For instance, if sep = "."
, the resulting name
will be of the form "states[i].states[j]"
.
See tpmatrix()
, which uses tpmatrix_names()
to name the columns
of the returned object.
tpmatrix_names(LETTERS[1:4])
tpmatrix_names(LETTERS[1:4], prefix = "")
tpmatrix_names(LETTERS[1:4], prefix = "", sep = ".")
Run the code above in your browser using DataLab