Learn R Programming

discourseGT (version 1.2.0)

tabulate_edges: Process raw order lists from two column format to edge and weight lists

Description

Takes raw input that is in a 2 column format/question-and-response format and generates an appropriate edge and weight lists in a combined .csv file. The weights in this function are determined by the number of occurrences a specific edge has occurred in the graph

Usage

tabulate_edges(input, silentNodes = 0)

Value

Saves the weight and edge lists as a data.frame object or a .csv file to disk.

Arguments

input

Input in question-and-response format. Must be a data.frame or file name of a .csv

silentNodes

The number of nodes that do not interact with other nodes but are in the group

Examples

Run this code
df <- sampleData1
tabData <- tabulate_edges(df,  silentNodes = 0)

Run the code above in your browser using DataLab