inst/shiny/ui.R

shinyUI(navbarPage(
    title = 'Lego Set Explorer',

    tabPanel(
        title = 'Data',
        shiny::uiOutput('table_view_columns'),
        DT::dataTableOutput('table_view')
    ),

    tabPanel(
        title = 'Desciptives',
        sidebarLayout(
            sidebarPanel(
                hr(),
                strong('Details'),
                htmlOutput('point_details')
            ),

            mainPanel(
                plotOutput("scatter_plot", click = "plot_click", height = '600px')
            )
        )
    )

))

Try the brickset package in your browser

Any scripts or data that you put into this service are public.

brickset documentation built on May 29, 2024, 6:13 a.m.