遇到的问题
在shiny中上传文件时出现了报错,如下图:
看了一下文件大小有53M,之前传5M的文件时没有出现过报错,在参考中找到了解决方案。
解决方案
在 server.R 的开头增加了一句options(shiny.maxRequestSize=60*1024^2)
,如图所示。
再次上传文件后成功运行。
参考
“Maximum upload size exceeded” when upload csv data 中的 By default, Shiny limits file uploads to 5MB per file. You can modify this limit by using the shiny.maxRequestSize option. For example, adding options(shiny.maxRequestSize=30*1024^2)
to the top of server.R would increase the limit to 30MB.