test2

Table of Contents

1 test 2: using pie chart without INFOJS

  • an interactive plot
library(googleVis)
d <- data.frame(name=letters[1:5], value=1:5)
x <- gvisPieChart(d)
print(x, 'chart')
  • a regular plot
pie(d$value, labels=d$name)

plot.png