#' Long format to transition matrix
#'
#' @param dat array of from, to, prob, vals
#' @param val_col Name of value column; default prob (string)
#'
#' @return Transition matrix
#' @import dplyr
#' @importFrom reshape2 dcast
#' @importFrom stats setNames
#' @export
#'
#' @examples
#' dat <- data.frame(from = c(NA,1, 1),
#' to = c(1, 2, 3),
#' prob = c(NA, 0.5, 0.5),
#' vals = c(0, 1, 2))
#' long_to_transmat(dat)
#'
long_to_transmat <- function(dat,
val_col = "prob"){
dat <- dat[!is.na(dat$from), ]
dat <- dat[, c("from", "to", val_col)]
# include missing from nodes so that transmat
# has the right number of rows/square
missing_nodes <- setdiff(1:max(dat$to), dat$from)
missing_rows <-
setNames(data.frame(missing_nodes, 2, NA),
names(dat))
dat <-
dat |>
rbind(missing_rows) |>
dplyr::arrange(from)
suppressMessages(
reshape2::dcast(formula = from ~ to,
data = dat) |>
select(-.data$from) |>
mutate("1" = NA, .before = "2"))
}
#' Transition matrix to long format
#'
#' @param probs Probability transition matrix
#'
#' @return array of from, to, prob
#' @importFrom reshape2 melt
#' @importFrom dplyr mutate
#' @export
#'
#' @examples
#'
#' tree <- list(
#' prob = matrix(data = c(NA, 0.5, 0.5), nrow = 1),
#' vals = matrix(data = c(NA, 1, 2), nrow = 1))
#'
#' transmat_to_long(tree$prob)
#'
transmat_to_long <- function(probs) {
probs |>
as_tibble(.name_repair = "unique") |>
dplyr::mutate('from' = row_number()) |>
reshape2::melt(id.vars = "from",
variable.name = 'to',
value.name = 'prob') |>
mutate(to = gsub("...", "", to)) |>
na.omit()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.