inst/app-visualize/ui/ui_seldata.R

tabPanel("Select Data", value = "tab_seldata",

  fluidPage(

    fluidRow(
      column(6, align = 'left',
        h4('Select Data Set'),
        p('Select a data set from the drop down box and click on submit.')
      ),
      column(6, align = 'right',
        actionButton(inputId='seldatalink', label="Demo", icon = icon("video-camera"),
          onclick ="window.open('https://www.youtube.com/watch?v=IckaPr19Bvc#t=01m14s', '_blank')")
      )
    ),
    hr(),
  	
  	fluidRow(
  		
  		column(12, align = "center",
  			selectInput(
  				inputId = "sel_data",
  				label = "Select a data set:",
          choices = '',
  				# choices = c('csv', 'excel', 'json', 'spss', 'stata', 'sas'),
  				selected = '', 
  				width = '200px',
  			)
  		)
  	),

    fluidRow(
        column(12, align = 'center',
        br(),
        actionButton(inputId = 'submit_seldata', label = 'Submit', width = '120px', icon = icon('check')),
        bsTooltip("submit_seldata", "Click here to select data.",
                      "bottom", options = list(container = "body")))
    )
  )

)

Try the xplorerr package in your browser

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

xplorerr documentation built on May 21, 2021, 9:08 a.m.