无法发布闪亮的应用程序

时间:2020-05-28 13:19:56

标签: r shiny shinydashboard shiny-server shinyapps

我已经构建了一个闪亮的应用程序,当我通过RStudio运行该应用程序时,它可以完全正常运行。但是,当我尝试通过Shiny发布我的R应用程序时,它会出现错误。这是以下消息:


Attaching package: ‘shinydashboard’

The following object is masked from ‘package:graphics’:

    box

Loading required package: ggplot2

Attaching package: ‘plotly’

The following object is masked from ‘package:ggplot2’:

    last_plot

The following object is masked from ‘package:stats’:

    filter

The following object is masked from ‘package:graphics’:

    layout

Creating a generic function for ‘toJSON’ from package ‘jsonlite’ in package ‘googleVis’

Welcome to googleVis version 0.6.4

Please read Google's Terms of Use
before you start using the package:
https://developers.google.com/terms/

Note, the plot method of googleVis will by default use
the standard browser to display its output.

See the googleVis package vignettes for more details,
or visit https://github.com/mages/googleVis.

To suppress this message use:
suppressPackageStartupMessages(library(googleVis))

Warning in file(file, "rt") :
  cannot open file 'Cleaned_Prop_Data.csv': No such file or directory
Error in value[[3L]](cond) : cannot open the connection
Calls: local ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted

1 个答案:

答案 0 :(得分:0)

看起来文件Cleaned_Prop_Data.csv在您的本地计算机上可用,但是在您发布应用程序的任何地方都没有。

相关问题