Closed schochastics closed 1 year ago
see: https://github.com/igraph/rigraph/pull/633#issuecomment-1384205381
Hope it is ok I open an issue for this. The problem is here: https://github.com/zpneal/backbone/blob/release/inst/tinytest/test_backbone.R#L77
Solution should be to change: igraph::V(M)$names <- LETTERS[1:10] to:igraph::V(M)$names <- c(LETTERS[1:10],1:100)
igraph::V(M)$names <- LETTERS[1:10]
igraph::V(M)$names <- c(LETTERS[1:10],1:100)
Thanks! Made the fix.
see: https://github.com/igraph/rigraph/pull/633#issuecomment-1384205381
Hope it is ok I open an issue for this. The problem is here: https://github.com/zpneal/backbone/blob/release/inst/tinytest/test_backbone.R#L77
Solution should be to change:
igraph::V(M)$names <- LETTERS[1:10]
to:igraph::V(M)$names <- c(LETTERS[1:10],1:100)