Fibonacci/ui.R

# This is the user-interface definition of a Shiny web application.
# You can find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com
#

library(shiny)

shinyUI(fluidPage(

  # Application title
  titlePanel("Fibonacci numbers"),

  # Sidebar with a slider input for number of bins
  sidebarLayout(
    sidebarPanel(
      numericInput("Amount",
                  "Lenght of sequence:",
                   2)
    ),

    # Show a plot of the generated distribution
    mainPanel(
      plotOutput("FibPlot")
    )
  )
))
planetMDX/Fibor documentation built on May 14, 2019, 2:56 p.m.