save_graph function

Function to save a graph

Function to save a graph

This function saves a graph produced with Diderot. The resulting structure is actually a graphml file and can thus be exported to third party software.

save_graph(gr, filename)

Arguments

  • gr: Graph object to save.
  • filename: File to save the graph to.

Author(s)

Christian Vincenot (christian@vincenot.biz)

See Also

load_graph

Examples

labels<-c("Corpus1","Corpus2") # Build a bibliographical dataset from Scopus exports db<-create_bibliography(corpora_files=c(tempfi1,tempfi2), labels=labels, keywords=NA) # Build graph gr<-build_graph(db=db,small.year.mismatch=TRUE, attrs=c("Corpus","Year","Authors"), nb.cores=1) ## Not run: save_graph(gr, "Saved.graphml")
  • Maintainer: Christian Vincenot
  • License: GPL (>= 2)
  • Last published: 2020-04-19

Useful links