I am trying to create a pie chart using rpy2 of the following data

Pathway  Occurrences
A               10%
B                50%
C                20%
E                10%

filename = './testing.png'
grdevices = importr('grDevices')
rdevices.png(file=filename, width=1200, height=800)
    dataf = Robjects.DataFrame({'pathways':Robjects.StrVector(Pathways),
                                occurrences' :
Robjects.FloatVector(Occurrences)
                                })
    pie = ggplot2.ggplot(dataf)+ \
    ggplot2.aes_string(x='',fill='pathways',weight="amounts")+\
    ggplot2.geom_bar(width=1)+\
    ggplot2.coord_polar(theta="y")
    pie.plot()
    grdevices.dev_off()

but this is not producing the pie chart needed where is the problem?

How to I rename the x and y lables?

-- 
Regards/Groete/Mit freundlichen Grüßen/recuerdos/meilleures salutations/
distinti saluti/siong/duì yú/привет

Jurgens de Bruin

        [[alternative HTML version deleted]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to