I have the fblog data set that is about french political party blogs.and is an object of igraph I just want to plot the most represented party(node) in my the set I used degree as below, but now I dont know how to use it to plot it I want just to show 20 of most important party(nodes) in my graph and plot them. I hope you can help me
deg_g <-sort(igraph::degree(fblog, mode = "all", normalized = T),decreasing = TRUE)
class(deg_g)
UU<-deg_g[1:20]