inst/shiny-examples/area/ui.R

library(shiny)

shinyUI(fluidPage(

    titlePanel("Area Estimation"),

    sidebarLayout(

        sidebarPanel(

            numericInput("seed", "Seed:", 10, 0, 1000, 1),

            sliderInput("B", "B:", 1, 1000000, 5000, 100)

        ),

        mainPanel(

            plotOutput("plot"),

            textOutput("time"),

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