library("shiny")
shinyUI(fluidPage(
div(class="navbar navbar-static-top",
div(class = "navbar-inner",
fluidRow(column(12, div(class = "brand pull-left", "PCA - Maximizing variance"))
))),
sidebarLayout(
sidebarPanel(
sliderInput("angle", "Line angle (in degree)", 0, 180, 90),
hr(),
tableOutput("outputValues")
),
mainPanel(plotOutput("outputPlot", height="600px"))
)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.