summaryNet | R Documentation |
Returns a summary of the processed graph results on console. The initial graph configuration and core analysis is required for this function to work. The other components are optional due to the modular nature of the functions. Data must be stored as a data object.
summaryNet(
netintconfigData = NULL,
coreNetAnalysisData = NULL,
subgroupsNetAnalysisData = NULL,
display = FALSE
)
netintconfigData |
Data object where the graph configuration data is stored (from |
coreNetAnalysisData |
Data object where the core analysis data is stored (from |
subgroupsNetAnalysisData |
Data object where subgroup analysis data is stored (from |
display |
Should the output be displayed in the R console? Results are saved as the project name in the initial config data as a text file on disk. |
Prints organized summary of all results of the graph with modular components on console or to .txt file on disk.
df <- sampleData1
prepNet <- tabulate_edges(df, silentNodes = 0)
prepGraphs <- prepareGraphs(prepNet, project_title = "Sample Data 1", weightedGraph = TRUE)
coreNet <- coreNetAnalysis(prepGraphs)
subgroup <- subgroupsNetAnalysis(prepGraphs, raw_input = df)
summaryNet(netintconfigData = prepGraphs, coreNetAnalysisData = coreNet,
subgroupsNetAnalysisData = subgroup, display = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.