mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-29 08:48:13 -05:00
48 lines
1004 B
R
48 lines
1004 B
R
\name{pageWithSidebar}
|
|
\alias{pageWithSidebar}
|
|
\title{Create a page with a sidebar}
|
|
\usage{
|
|
pageWithSidebar(headerPanel, sidebarPanel, mainPanel)
|
|
}
|
|
\arguments{
|
|
\item{headerPanel}{The \link{headerPanel} with the
|
|
application title}
|
|
|
|
\item{sidebarPanel}{The \link{sidebarPanel} containing
|
|
input controls}
|
|
|
|
\item{mainPanel}{The \link{mainPanel} containing outputs}
|
|
}
|
|
\value{
|
|
A UI defintion that can be passed to the \link{shinyUI}
|
|
function
|
|
}
|
|
\description{
|
|
Create a Shiny UI that contains a header with the
|
|
application title, a sidebar for input controls, and a
|
|
main area for output.
|
|
}
|
|
\examples{
|
|
# Define UI
|
|
shinyUI(pageWithSidebar(
|
|
|
|
# Application title
|
|
headerPanel("Hello Shiny!"),
|
|
|
|
# Sidebar with a slider input
|
|
sidebarPanel(
|
|
sliderInput("obs",
|
|
"Number of observations:",
|
|
min = 0,
|
|
max = 1000,
|
|
value = 500)
|
|
),
|
|
|
|
# Show a plot of the generated distribution
|
|
mainPanel(
|
|
plotOutput("distPlot")
|
|
)
|
|
))
|
|
}
|
|
|