R找不到函数scale_colour_tableau

时间:2016-07-03 15:51:53

标签: r ggplot2 shiny

当我运行我的应用程序时,R显示我无法找到功能scale_colour_tableau

我已经通过R studio安装了ggplot2和闪亮。

server.R上的错误

shinyServer(function(input, output) {

output$exPlot<-renderPlot({

ggplot(data=MP,aes(x=year,y=Gprice,fill=Cprice,xmax=100,ymax=100))+geom_bar(width=1,stat="identity")+ggtitle(expression(atop("Market Analysis",atop("")))) +theme(plot.title=element_text(size=20)) +theme_gray()+scale_colour_tableau()}, height = 600, width = 900)



output$exPlot2<-renderPlot({

ggplot(data=PI,aes(x=Type,y=DemandIndex,fill=Type,xmax=100,ymax=100))+geom_bar(width=1,stat="identity")+coord_polar(theta = "x")+ggtitle(expression(atop("Radar Analysis",atop("let’s have fun"))))+theme(plot.title=element_text(size=20))+theme_gray()+scale_colour_tableau()}, height = 600, width = 900)  

  })

R studio版本为0.99.902

R版本是3.3.0

1 个答案:

答案 0 :(得分:1)

if(!require("pacman")) install.packages("pacman")
pacman::p_load(ggthemes)