Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

communityMapping

communityMapping(differential, file)


Description

Get the community mapping for all communities from the selected post processing algorithm or the main algorithm, after the last iteration.

Usage

DynComm.communityMapping(dyncomm,differential, file)

Arguments

dyncomm

A DynComm object, if not using the inline version of the function call

differential

If TRUE, only values that have changed in the latest run will be returned

file

If given, outputs the community mapping to the given file instead of the console

Details

If file is not given, returns a two column matrix with vertices in the first column and the communities in the second.

If file is given, returns a single row, single column matrix with TRUE or FALSE, depending whether if writing to file succeeded or failed, respectively.

When writing to file, if the Community-Vertex program parameter is TRUE, each line of the file will have the community first, followed by a list of vertices that belong to the community. If that parameter is FALSE, each line will have a single vertex followed by its community. All values are separated by a white character.

Value

a matrix with either the community mapping or a boolean value

Author(s)

poltergeist0

See Also

Examples

library(DynComm)

Parameters<-matrix(c("e","0.1","w", "FALSE"),ncol=2, byrow=TRUE)
dc<-DynComm(ALGORITHM$LOUVAIN,CRITERION$MODULARITY,Parameters)
dc$addRemoveEdges(
 matrix(
   c(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,12,13,1,1,1,2,2,2,18,12,19,20,2,3,11,12,4,9,5,9,22)
      ,ncol=2)
)

dc$communities()
dc$communityMapping()

DynComm

Dynamic Network Communities Detection and Generation

v2020.1.6
GPL-2
Authors
Rui P. Sarmento [aut, cre] (<https://orcid.org/0000-0003-1891-5295>), Luís Lemos [aut], Mário Cordeiro [ctb], Giulio Rossetti [ctb]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.