How do I print out all the attributes for the nodes in my vertex sequence?
Given graph g, create an igraph vertex sequence with one vertex:
> (V(g)[1])
+ 1/12761 vertex, named:
[1] 18kPq7GPye-YQ3LyKyAZPw
Where 18kPq7GPye-YQ3LyKyAZPw is the vertex name. However, the vertices in the graph have other attributes as well:
> vertex_attr_names(g)
 [1] "name"  "realname"   "color"   "votes_funny"        
How do I print out all the attributes for the nodes in my vertex sequence?
