我正试图从闪亮的Rstudio网站运行闪亮的教程6应用程序。网址是:
http://shiny.rstudio.com/tutorial/lesson6/
在尝试运行应用时,我收到了以下错误:
Error : Failed to download file. Error message:
cannot open URL 'https://research.stlouisfed.org/fred2/series/CPIAUCNS/downloaddata/CPIAUCNS.csv'
我是新手,并且不了解这个错误。
答案 0 :(得分:1)
在堆栈溢出的其他线程中找到答案:
Quantmod Error 'cannot open URL'
第6课应用于运行应用程序的代码是:
library(shiny)
options(download.file.method="libcurl")#This fixed the error
runApp("stockVis")
答案 1 :(得分:0)
确保您已将server.R
,ui.R
和helpers.r
保存在名为“stockVis”的文件夹中。如果没问题,您可以尝试指定应用的路径,如下所示:
library(quantmod)
runApp("D:/mydocuments/stockVis")