inst/shiny-examples/area/ui.R

library(shiny)

shinyUI(fluidPage(

    titlePanel("Area Estimation"),

    sidebarLayout(

        sidebarPanel(

            numericInput(inputId = "seed",
                         label = "Select Seed Value",
                         value = 1),

            sliderInput(inputId = "B",
                        label = "Select Number of Simulations",
                        min = 1,
                        max = 1000000,
                        value = 5000)

        ),

        mainPanel(

            plotOutput(outputId = "plot"),

            textOutput(outputId = "time"),

            textOutput(outputId = "area")
        )
    )
))
ptds2021/pkghw4g5 documentation built on Dec. 22, 2021, 9:58 a.m.