sobach

Practice_5_ui

Nov 6th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.44 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. # One file Shiny application
  3. # Based on data from KimonoLabs RIA API
  4.  
  5. shinyUI(fluidPage(
  6.   sidebarLayout(
  7.     sidebarPanel(
  8.       sliderInput('snapshots', label = h3('Use X last snapshots:'),
  9.                   min = 1, max = 10, value = 1)
  10.      
  11.     ),
  12.     mainPanel(h1('Wordcloud of last news'),
  13.               plotOutput('cloud'),
  14.               p('Timestamp:'),
  15.               textOutput('lasttry')
  16.     )
  17.   )
  18. ))
Add Comment
Please, Sign In to add comment