summaryNet {discourseGT} | R Documentation |
Print summary of graph results
Description
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.
Usage
summaryNet(
netintconfigData = NULL,
coreNetAnalysisData = NULL,
subgroupsNetAnalysisData = NULL,
display = FALSE
)
Arguments
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. |
Value
Prints organized summary of all results of the graph with modular components on console or to .txt file on disk.
Examples
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)
[Package discourseGT version 1.2.0 Index]