【问题标题】:Two wordcloud2 on the same shiny page同一个闪亮页面上的两个 wordcloud2
【发布时间】:2019-03-01 11:04:39
【问题描述】:

我正在尝试将两个 wordcloud2 放在我闪亮的仪表板中,而第二个没有显示

当我检查页面时它们都在正文中

我的脚本

library(wordcloud2)
library(shinydashboardd)
# Global variables can go here
n <- 1

# Define the UI
ui <- dashboardPage(
   box(wordcloud2Output('wordcloud2')),
   box(wordcloud2Output('wordcloud3'))
)


# Define the server code
server <- function(input, output) {
  output$wordcloud2 <- renderWordcloud2({
    wordcloud2(demoFreq)
  })

  output$wordcloud3 <- renderWordcloud2({
    wordcloud2(demoFreq)
  })

}
shinyApp(ui = ui, server = server)

编辑: 我使用答案脚本时的屏幕截图,没有第二个 wordcloud

带有wordcloud div的html输出

<!DOCTYPE html>
<html>
<head>

  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <script type="application/shiny-singletons"></script>
  <script type="application/html-dependencies">json2[2014.02.04];jquery[1.12.4];shiny[1.2.0];htmlwidgets[1.3];wordcloud2[0.0.1];wordcloud2-binding[0.2.1];bootstrap[3.3.7]</script>
<script src="shared/json2-min.js"></script>
<script src="shared/jquery.min.js"></script>
<link href="shared/shiny.css" rel="stylesheet" />
<script src="shared/shiny.min.js"></script>
<script src="htmlwidgets-1.3/htmlwidgets.js"></script>
<link href="wordcloud2-0.0.1/wordcloud.css" rel="stylesheet" />
<script src="wordcloud2-0.0.1/wordcloud2-all.js"></script>
<script src="wordcloud2-0.0.1/hover.js"></script>
<script src="wordcloud2-binding-0.2.1/wordcloud2.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="shared/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<script src="shared/bootstrap/js/bootstrap.min.js"></script>
<script src="shared/bootstrap/shim/html5shiv.min.js"></script>
<script src="shared/bootstrap/shim/respond.min.js"></script>

</head>

<body>
  <div class="container-fluid">
    <div id="wordcloud2" style="width:100%; height:400px; " class="wordcloud2 html-widget html-widget-output"></div>
    <div id="wordcloud3" style="width:100%; height:400px; " class="wordcloud2 html-widget html-widget-output"></div>
  </div>
</body>

</html>

在此屏幕截图中没有可见性;在第二个 wordcloud 上继承

【问题讨论】:

  • 我也遇到了同样的问题,请问有解决办法吗?谢谢!

标签: r shiny wordcloud2


【解决方案1】:

我没有遇到任何问题。我无法运行您的代码,因为它有一些错误(您写了 shinydashboardd 而不是 shinydashboard,并且您的 UI 无法运行,因为 dashboardPage() 函数不能接受两个框作为参数)但是如果我只需修复这些错误就可以了:

library(wordcloud2)
library(shiny)

ui <- fluidPage(
        wordcloud2Output('wordcloud2'),
        wordcloud2Output('wordcloud3')
)

server <- function(input, output) {
        output$wordcloud2 <- renderWordcloud2({
                wordcloud2(demoFreq)
        })

        output$wordcloud3 <- renderWordcloud2({
                wordcloud2(demoFreq)
        })
}

shinyApp(ui = ui, server = server)

(以后,在发布代码问题之前,请确保提供的代码可以运行,除非问题出在代码本身)

【讨论】:

  • 谢谢你的回答,我试过你的代码,这是同样的问题,只有第一个 wordcloud 显示
  • 我唯一能想到的就是尝试更新软件包
  • 所有包的最后一个版本,我添加了html页面输出,里面有2个wordcloud。
  • 在这种情况下,您可以向 wordcloud 包作者报告问题并向他们展示此代码。包括有关您的环境的任何信息
猜你喜欢
  • 1970-01-01
  • 2021-04-11
  • 2020-09-14
  • 1970-01-01
  • 2012-09-18
  • 1970-01-01
  • 2015-11-01
  • 2014-03-23
  • 1970-01-01
相关资源
最近更新 更多