suppose i have a variable x which gives the sizes of the pie slices as follows:
x
[[1]]
Celebrity    Corporate 
        2            6 
[[2]]
Celebrity    Government  Unverified 
        2             1           4 
[[3]]
Celebrity    Media   Unverified 
        5        1            6 
My code was here:
plot(my_graph, vertex.shape="pie", vertex.pie=x, vertex.pie.color=???, vertex.label=NA, edge.arrow.mode=0)
My question is how could I specify colors for Celebrity, Media, Corporate, Government, and Unverified manually and plot my_graph using pie charts as vertices.
 
    
 
    