I'm quite new to R and having trouble with the following:
I'm researching politicians in Belgium on Twitter, and would like to see if any networks form within political parties on Twitter.
I have two data files
- The matrix file that contains whether or not politicians are linked (politicixpolitici.csv)
- The file that contains all the polticians with that respective
fistname, name, political party, twitterhandle and parliament
(data.csv)
I want to create a graph that shows the network, but with the nodes colored by their politicial party (this variable is called 'fractie' in the data.csv file).
I've tried doing this as follows:
First, I've tried to combine the files as follows:
rownames(politicicsv) <- politicicsv[,'TwitterHandle']
test <- cbind(politicixpolitici,
politicicsv[, "Fractie"][match(rownames(politicixpolitici),
rownames(politicicsv))])
=> I've plotted this network, but it comes out very sloppy and the names are on there which makes it very hard to see + the nodes are obviously not coloured according to the party.
Then, I've tried it using statnet, but when I wanted to create the the graph, I had trouble with the creation of the vertex attribute:
fractie <- get.vertex.attribute(politicicsv, "Fractie")
Error in get.vertex.attribute(politicicsv, "Fractie") :
get.vertex.attribute requires an argument of class network.
Can someone help me in plotting this network, with the nodes colored according to the political party ("Fractie") they belong to?
Files can be found here
Thank you, this would help me with my thesis.
You could do it like this
or try an interactive plot:
All in all I'd recommend exporting your graph to gephi and experiment with other layouts and visualizations there interactively.