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 = 0, max = 1000000, value = 5000)

        ),

        mainPanel(

            plotOutput(outputId = "plot"),

            textOutput(outputId = "time"),

            textOutput(outputId = "area")
        )
    )
))
MeriLikoska/pkghw4g5 documentation built on Dec. 17, 2021, 4:13 a.m.