Skip to content

Commit

Permalink
temporary fix: suppressWarnings from igraph
Browse files Browse the repository at this point in the history
  • Loading branch information
jchiquet committed Jan 30, 2024
1 parent cac9019 commit a4f717b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils_plot.R
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ plotMesoMultipartite <- function(E,theta, list_pi,v_distrib,directed,nbNodes,nod


colnames(alpha.norm) <- rownames(alpha.norm) <- labelNode
g <- igraph::graph.adjacency(alpha.norm, mode = 'directed', weighted = TRUE,diag = TRUE)
g <- suppressWarnings(igraph::graph.adjacency(alpha.norm, mode = 'directed', weighted = TRUE, diag = TRUE))
if (is.null(layout)){layout <- igraph::layout_with_fr(g)}
u <- unlist(lapply(1:nbFG, function(p){list_pi[[p]]*10}))

Expand Down

0 comments on commit a4f717b

Please sign in to comment.