How to export GraphML and read into R/igraph? This is a question from a user, which was resolved via email.

The answer we provided:

It is easy to export GraphML (network file format) from VOSON and read it into R/ igraph. If you load up the "testdb" voson-analysis database (everyone has access to this database). Then select Data->Download->GraphML and it will save a file named [user].tutorial_[user]_testdbAN.graphml, where "user" is your username.

Then in R:

ibrary(igraph)
g <- read.graph("[user].tutorial_[user]_testdbAN.graphml",format="graphml")
plot(g)

You are now in the world of R/igraph and can use all igraph features.

You can find more R resources here:
http://vosonlab.net/SocialMediaLab
http://vosonlab.net/SocialMediaLab#training
http://vosonlab.net/big-data-analysis-ACSPRI-Summer2017