如何在Wordcloud R中增加绘制区域的大小(边界,因为某些单词被切掉)

时间:2019-08-12 09:06:08

标签: r word-cloud

我使用Shiny仪表板,并且输出是在dashboardBody(框中,(输出

    dashboardPage(skin = "blue",
      dashboardHeader(title = "Word Cloud",titleWidth = 320),
      dashboardSidebar(tags$style(HTML(".main-sidebar{width: 320px;}")),
        sidebarMenu(
          menuItem("Type",startExpanded = TRUE,
                   selectInput("selection", "Please, Choose Type:",
                               choices = books),
                   actionButton("update", "Change"),
                   hr()

          ),
          menuItem("Frequency",startExpanded = TRUE,
                   sliderInput("freq",
                               "Please, choose Frequency:",
                               min = 100,  max = 1000, value = 20,step=50)

          ),
          menuItem("Number of Words",startExpanded = TRUE,
                   sliderInput("max",
                               "Please choose Number of Words:",
                               min = 10,  max = 300,  value = 70,step=10)

          )
        )
      ),
###My outPut

dashboardBody(
        fluidRow(
          box(width=12,height = 12,background="yellow",collapsible = TRUE,res = 300,
              plotOutput("plot")
          )
        )
      )
    )[enter image description here][1]


      [1]: https://i.stack.imgur.com/IogCV.jpg

dashboardBody(         fluidRow(           box(width = 12,height = 12,background =“ yellow”,可折叠= TRUE,res = 300,               plotOutput(“ plot”)           )

dashboardBody(         fluidRow(           box(width = 12,height = 12,background =“ yellow”,可折叠= TRUE,res = 300,               plotOutput(“ plot”)           )

如何在wordcloud R中增加绘制区域的大小(边界,因为某些单词被切掉)

0 个答案:

没有答案
相关问题