using R shiny server together with ggplot

2019-07-28 13:55发布

Am using ggplot to plot a pie chart as in the code below in RStudio and its working fine. the problem is when i want to use R shiny server.

indicatorTotals<-tapply(anc_data$Total,anc_data$Indicator,sum)
graphdatapie <- as.data.frame(indicatorTotals)
c <- ggplot(graphdatapie, aes(x=rownames(graphdatapie),y=indicatorTotals,fill = 
    indicatorTotals)) + geom_bar(width = 1,stat="identity")
print(c + coord_polar(theta = "y"))

the data is this format

                       indicatorTotals
ANC 1st visit                   248777
ANC 2nd visit                   231914
ANC 3rd visit                   162062
ANC 4th or more visits           99528

I get the following error message from the R shiny server ui.R.

Error:object 'graphdatapie' not found. 

What could be the problem???

标签: r ggplot2
1条回答
叼着烟拽天下
2楼-- · 2019-07-28 14:29

Add the following to the ggplot function: environment=environment() i.e

ggplot(graphdatapie, aes(x=rownames(graphdatapie),y=indicatorTotals,fill = 
             indicatorTotals), environment=environment()) 

Then restart the shiny-server. That will solve the problem.

查看更多
登录 后发表回答