gpt4 book ai didi

r - 使用传单部署 R shiny 应用程序

转载 作者:行者123 更新时间:2023-12-04 18:03:56 38 4
gpt4 key购买 nike

我想使用我可以在线发布的传单创建一个 Shiny 的 map ,让没有 R 的其他人可以查看它并与之交互。我可以使用传单创建一个 Shiny 的应用程序,但是当我在弹出窗口中使用“发布”按钮时,我收到一条错误消息,提示“要部署的目录 (~) 超过了最大部署大小,即 100MB。考虑创建一个仅包含您希望部署的内容的新目录。

我无法弄清楚这是在告诉我什么。有人有什么想法吗?我在下面发布了我的代码。

谢谢,休

    library(shiny)
library(leaflet)

shinyApp(
ui = fluidPage(leafletOutput('myMap')),
server = function(input, output) {

# download and load data
map = leaflet() %>% addTiles('http://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png',
attribution = paste(
'&copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors',
'&copy; <a href="http://cartodb.com/attributions">CartoDB</a>'
)
) %>% setView(-122.36, 47.67, zoom = 10)
output$myMap = renderLeaflet(map)
}
)

最佳答案

我昨天(2015 年 5 月 14 日)从 RStudio 收到了这封电子邮件:

New in shinyapps.io May 2015 - Analyze bigger datasets! Larger R packages – shinyapps.io has increased the size of R packages that can be installed from 100MB to 1GB.

基本上 RStudio 将存储限制从 100 MB 增加到 1GB。也许这可以解决您的问题?

关于r - 使用传单部署 R shiny 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30246255/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com