saveGhml produces a .graphml file from a netCoin object.

saveGhml(netCoin, file="netCoin.graphml")

Arguments

netCoin

A netCoin object.

file

The name of the file. If not extension, .gexf is used as default.

Value

The function creates a file with vertices and arcs or edges of a netCoin object.

Author

Modesto Escobar, Department of Sociology and Communication, University of Salamanca. See https://sociocav.usal.es/blog/modesto-escobar/

Examples

if (FALSE) { # 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 }