RC.network {RC} | R Documentation |
This function creates the sociomatrix of parent-child relationships about all computations that contain a specific keyword. The object that is returned can be used to display a sociogram (requires the 'igraph' package).
RC.network(keyword = "workshop", elaborate = TRUE, computations = 1, quote = TRUE)
keyword |
keyword to be used in search |
elaborate |
Boolean parameter which indicates if parents should have the same keyword as the children (elaborate=TRUE). |
computations |
Imposes a filter: only the relationships between pairs of users are displayed for which the number of reproduced computations of user A by user B is larger (or equal) than <computations>. |
quote |
use a keyword search with quotes? |
Returns edges and verices that can be used in the igraph package to display and analyze social networks.
See also the 'igraph' package.
#Note: the RC.plot.network function requires that the 'igraph' package is #installed on your computer #r <- RC.network(keyword="exercise") #g <- RC.plot.network(r,colors=c("red","blue"),weights=as.numeric(r$edges$V3))