gpt4 book ai didi

r - Shiny 的应用程序在移动设备上加载时挂起并显示 'please wait' 消息 (R)

转载 作者:行者123 更新时间:2023-12-04 10:12:54 29 4
gpt4 key购买 nike

我构建了一个 Shiny 的应用程序来从 Quandl 加载数据并显示有助于跟踪我的投资的图表。我已将此发布到 shinyapps.io https://jackpeacock.shinyapps.io/investmentgraphs

这在桌面上加载正常,但只是卡在移动设备上的“请稍候”加载屏幕上。我已经在 Google Nexus 5 上的 Chrome 和 iPad 2 上的 Chrome 和 Safari 中对此进行了测试。我还尝试在这两种设备上请求桌面站点,但没有成功。 RStudio 的网站说移动设备应该没有问题。 ( https://www.rstudio.com/faq-items/will-shiny-app-work-properly-mobile-device-iphone-android-ipad-kindle-etc/ )

起初我认为这可能与使用 ggplot2 或 quandl 包有关,但后来我注意到我之前构建的一个极其简单的应用程序也遇到了同样的问题 https://jackpeacock.shinyapps.io/chelseapredictor .

我的更简单的 UI.R 文档的顶部如下所示:

shinyUI(fluidPage(
headerPanel("Can you catch Chelsea?"),
sidebarPanel(
dataTableOutput('lTable')
),
mainPanel(
tabsetPanel(
tabPanel("League Predictor",

我更简单的 server.R 文档的顶部如下所示:

# Let's first create the data frame:

Club <- c("Chelsea", "Man City", "Arsenal", "Man Utd", "Liverpool",
"Spurs", "Southampton", "Stoke", "Swansea", "West Ham",
"Newcastle", "Crystal Palace", "West Brom", "Everton",
"Hull", "Sunderland", "Aston Villa", "QPR", "Burnley",
"Leicester")

Played <- c(27, rep(28, 18), 27)

Points <- c(63, 58, 54, 53, 51, 50, 49, 42, 40, 39, 35, 30, 30, 28,
27, 26, 25, 22, 22, 18)

leagueTable <- data.frame(Club, Played, Points)

shinyServer(
function(input, output) {
output$lTable <- renderDataTable(leagueTable, options=list(paging = FALSE, searching = FALSE))
southampton <- reactive({

有人知道为什么我在使用移动设备时遇到问题吗?

最佳答案

这似乎是大写的问题。

上述问题中的两个链接甚至没有加载到桌面上。但是,如果我使用链接 https://jackpeacock.shinyapps.io/InvestmentGraphshttps://jackpeacock.shinyapps.io/ChelseaPredictor我在台式机或移动设备上不再有问题。

关于r - Shiny 的应用程序在移动设备上加载时挂起并显示 'please wait' 消息 (R),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32377561/

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