我在Rshiny中实现了一个简单的堆栈折线图。从.csv文件读取的文件已添加到项目文件夹。从Rstudio运行应用程序时,该图可以正常工作并显示正常。但是,一旦该应用程序在www.shinyapps.io中发布,它就会引发错误Error in ggplot2: object 'data' not found
。任何人都可以帮助我,为什么在应用程序部署后会发生这种情况。预先感谢。
ui.R
建议<-read.csv(“ recommendation.csv”,标头= TRUE)
server.R
output$serviceCostEfficiency <- renderPlot({
data <- read.csv("pie.csv", header = TRUE)
ggplot() + geom_area(data=data, aes(x=year, y=cost, fill=z)) +
guides(fill = guide_legend(reverse=TRUE))
})