saveGhml | R Documentation |
saveGhml
produces a .graphml file from a netCoin object.
saveGhml(net, file="netCoin.graphml")
net |
A netCoin object. |
file |
The name of the file. If not extension, .gexf is used as default. |
The function creates a file with vertices and arcs or edges of a netCoin object.
Modesto Escobar, Department of Sociology and Communication, University of Salamanca. See https://sociocav.usal.es/blog/modesto-escobar/
## Not run:
# A character column (with separator)
frame <- data.frame(A = c("Man; Women", "Women; Women",
"Man; Man", "Undet.; Women; Man"))
data <- dichotomize(frame, "A", add=FALSE, sep = "; ")
graph <- allNet(data, maxL=.5) # graph from an incidence matrix
saveGhml(graph,"graph") # save graph.net file
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.