NRW | R Documentation |
Estimates a semantic network using the Naive Random Walk method described in Lerner, Ogrocki, and Thomas (2009)
NRW(data, type = c("num", "prop"), threshold = 0)
data |
Matrix or data frame. A preprocessed verbal fluency matrix where rows are participants and columns are verbal fluency responses |
type |
Character.
Type of
Defaults to |
threshold |
Numeric.
Value of the minimum number or proportion of co-occurrences.
Defaults to |
Returns a undirected semantic network
Alexander Christensen <alexpaulchristensen@gmail.com>
Lerner, A. J., Ogrocki, P. K., & Thomas, P. J. (2009). Network graph analysis of category fluency testing. Cognitive and Behavioral Neurology, 22, 45-52.
# Get data
data <- open.clean
# Organize group data
## Get group data
group <- open.group
## Low and high openness to experience groups
low <- data[which(group == "Low"),]
high <- data[which(group == "High"),]
# Compute networks
low.net <- NRW(low)
high.net <- NRW(high)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.