Description Usage Arguments Value Examples
Create a main panel containing output elements that can in turn be passed to
sidebarLayout
.
1 |
... |
Output elements to include in the main panel |
width |
The width of the main panel. For fluid layouts this is out of 12 total units; for fixed layouts it is out of whatever the width of the main panel's parent column is. |
A main panel that can be passed to sidebarLayout
.
1 2 3 4 5 | # Show the caption and plot of the requested variable against mpg
mainPanel(
h3(textOutput("caption")),
plotOutput("mpgPlot")
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.