Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. Nodes <- c("1", "2", "3", "4", "5", "6")
  2. Edges <- list("1" = list(edges = c("2", "3", "4", "5", "6")),
  3. "2" = list(edges = c("1", "3", "4", "5", "6")),
  4. "3" = list(edges = c("1", "2", "4", "5", "6")),
  5. "4" = list(edges = c("1", "2", "3", "5", "6")),
  6. "5" = list(edges = c("3", "4", "6")),
  7. "6" = list(edges = NULL))
  8. treeobj <- new("graphNEL", nodes = Nodes, edgeL = Edges, edgemode = "directed")
  9. fit3 <- msSurv(df, treeobj, bs = TRUE, LT = TRUE)
  10.  
  11. No states eligible for exit distribution calculation.
  12. Entry distributions calculated for states 6 .
  13. Error in bs.IA[, , j, b] : subscript out of bounds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement