Learn R Programming

discourseGT (version 1.0.0)

subgroupsNetAnalysis: Runs subgroup analysis on graphs

Description

Performs a subgroup analysis on the graph

Usage

subgroupsNetAnalysis(ginp, raw_input = NULL, normalized = FALSE)

Arguments

ginp

The prepared graph object from prepareGraphs function

raw_input

The file path of the original .csv file

normalized

Normalize the betweeness centrality values

Value

Saves number of potential cliques, cores, symmetry of the graph, dyads in graphs, node composition in proposed cliques, neighbors adjacent to each node, transitivity (local and global) as a list object

Examples

Run this code
# NOT RUN {
df <- sampleData1
prepNet <- tabulate_edges(df, iscsvfile = FALSE)
baseNet <- prepareGraphs(prepNet, project_title = "Sample Data 1",
directedNet = TRUE, selfInteract = FALSE, weightedGraph = TRUE)
subgroupsNetAnalysis(baseNet, raw_input = df)

# }

Run the code above in your browser using DataLab