library(shiny)
library(shinyIncubator)
shinyUI(pageWithSidebar(
headerPanel('Simple matrixInput example'),
sidebarPanel(
matrixInput('foo', 'Foo', head(cars))
),
mainPanel(
plotOutput(outputId='plot')
)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.