Как сделать рендеринг в пределах блеска - PullRequest
1 голос
/ 04 июня 2019

Кажется, что трэллископ не может использовать в блестящем, даже если включена функция renderTrelliscope.Может ли кто-нибудь из вас помочь мне подтвердить это?

Хотя эти ссылки, кажется, помогают: https://www.rdocumentation.org/packages/trelliscopejs/versions/0.1.18/topics/Trelliscope-shiny

Проблема, но не может помочь мне https://github.com/hafen/trelliscopejs/issues/37

library(shiny)
install.packages("gapminder")
library(gapminder)
devtools::install_github("hafen/trelliscopejs")
library(trelliscopejs)
ui <- fluidPage(

  # App title ----
  titlePanel("Hello trelliscope in Shiny!"),

  # Sidebar layout with input and output definitions ----
  fluidPage(

    # Main panel for displaying outputs ----
    mainPanel(

      # Output: Histogram ----
      trelliscopeOutput("plot", width = "100%", height = "400px")

    )
  )
)


server <- function(input, output) {

  output$plot <- renderTrelliscope(
    qplot(year, lifeExp, data = gapminder) +
      xlim(1948, 2011) + ylim(10, 95) + theme_bw() +
      facet_trelliscope(~ country + continent,
                        nrow = 2, ncol = 7, width = 300, as_plotly = TRUE)

    )
  }

shinyApp(ui, server)

Как мы можем отрисовать facet_trelliscope внутри блестящего?

...