coreNetAnalysis {discourseGT} | R Documentation |
Analyzes the graphs with the core parameters, such as number of edges and nodes, density, average degree, centrality, and modularity
coreNetAnalysis(ginp)
ginp |
The prepared graph object from prepareGraphs function |
Gives the edge and weighted edge counts, number of nodes, density, degree (averages), memberships, modularity, centrality, articulation points, and strong/weak plots as a list object
df <- sampleData1
prepNet <- tabulate_edges(df, iscsvfile = FALSE, silentNodes = 0)
baseNet <- prepareGraphs(prepNet, project_title = "Sample Data 1", weightedGraph = TRUE)
coreNetAnalysis(baseNet)