问题标签 [shinyapps]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
r - R Shiny - uploading multiple csv works locally but not on shinyapps.io
I have produced an app that allows the user to upload multiple csv files.
These csvs are then 'rbind' together, 'read.csv' and have a column added to the df which is the filename.
The df is then processed to produce various plots which are downloadable. This works perfectly locally but not when deployed. I've replicated the error with the code below:
Warning in file(file, "rt") :cannot open file '*.csv': No such file or directory
Warning: Error in file: cannot open the connection
UI:
Server:
Any help would be really appreciated. I have searched tons of SO and other forums and I'm really stuck.
Please help
r - 无法使用 rsconnect 验证 r shinyapps 帐户
尝试安装重新连接并使用 R-shiny 对其进行身份验证。但是,似乎无法找到函数文件的大小。
这是安装:
下载的源码包在
这是我尝试注册帐户时出现的错误。
r - shiny app with data from database works locally but not in shinyapps.io
I wrote a simple shiny app, with data that comes from a database. Here is my code:
When I run this shiny app in my local environment, it works perfectly. When I publish it to shinyapps.io and run it, I get this error: Disconnect from the server
and when I check error by rsconnect::showLogs(account='')
, I get:
I am really confused, this is a shiny server issue or something else?
r - 在 shinyapps.io 中部署 R 应用程序 - 错误:HTTP 404
当我尝试在 shinyapps.io 中发布 R 应用程序时,它显示错误:
我该如何解决这个错误?
shiny - 为什么我的注销按钮在 Shiny 上不起作用?
我想知道是否有人知道如何使我的注销按钮起作用。
我的程序是这样的:
用户界面
服务器
我需要拥有所有这些用户界面,我很难加入它们,因为我不知道如何去做。
我尝试使用以下代码使其返回主页:
在服务器.R
在ui.R中
但它也不起作用。而且我想在这种多界面的情况下,重定向到主页的按钮比退出按钮更容易。
你能帮助我吗?有谁知道怎么做?
r - 来自 selectInput 的闪亮更新数据
我在获取 selectizeInput 的输出以更新上传的 csv 数据时遇到问题。有问题的具体代码块是
“组”列使用硬编码值进行过滤。我的目的是通过获取“Grp”的值来使其动态化。下图显示了问题
完整代码如下
我正在上传 .csv 文件。以下数据与我的数据相似。
r - Shinyapps.io 发布问题:缺少 webshot 依赖库“PhantomJS”
当我将我的应用程序发布到 shinyapps.io 时,我遇到了以下问题:
- 幻影JS
- 文件(con,“rb”):无法打开连接
输出 pdf 文件中的完整日志:
在本地 Shiny 服务器上安装 PhantomJS 后,我可以成功创建 PDF,但是,我不知道如何在 shinyapps.io 上解决它。
r - 在 Shinyapps 中访问 CSV
当我在本地运行它时,它可以工作,但是当我将它加载到 shinyapps.io 时出现错误,我的 csv 文件是一个简单的 10 x 10 矩阵,包含内容 1:100。
我的 app.R 和 myappdata.csv 都保存在“myapp”文件夹中。我试过以下
这些都不起作用。我保存数据是否错误?当我删除 y = read.csv 时,代码可以完美运行.....