I am trying to generate a pie chart on my browser using rApache
my R code is this
library(MASS)
school = painters$School
school.freq = table(school)
pie(school.freq)
when i run this on browser ... i am getting this error
rApache has something to tell you. View source and read the HTML comments at the end.
Error in function (file = ifelse(onefile, "Rplots.pdf", "Rplot%03d.pdf"), : cannot open file 'Rplots.pdf'
any idea why i am getting this error?