I use function max_cliques in R from package igraph to get cliques from a social network using the following commands.
edges<-read.csv2("edges.csv", header = TRUE, sep = ",")
nodes<-read.csv2("nodes.csv", header = TRUE, sep = ",")
graph <- graph_from_data_frame(edges, directed=FALSE, vertices=nodes)
mc<-max_cliques(graph, min = 4, max = NULL, subset = NULL, file = "output_clique.csv" )
All works fine except the fact that I receive in the output file new ids of vertices that I cannot handle. I've read the documentation of the package. They speak about it but doesn't seem to give a solution about it.
Somme propositions ?