inst/RTatami/ui.R

#
# This is the user-interface definition of a Shiny web application. You can
# run the application by clicking 'Run App' above.
#
# Find out more about building applications with Shiny here:
#
#    http://shiny.rstudio.com/
#

library(shiny)

# Define UI for application that draws a histogram
shinyUI(fluidPage(

  # Application title
  titlePanel("Conversion of units from metric to Japanese jo"),

  # Sidebar with a slider input for number of bins
  sidebarLayout(
    sidebarPanel(
       sliderInput("current_square_meter",
                   "Square Meter:",
                   min = 0,
                   max = 1000,
                   value = 33)
    ),

    # Show a plot of the generated distribution
    mainPanel(
       plotOutput("distPlot")
    )
  )
))
inoueakimitsu/RTatami documentation built on May 8, 2019, 6:48 p.m.