library(shiny)
library(rhandsontable)
library(ggplot2)
shinyUI(fluidPage(
titlePanel("Efficient Frontier"),
fluidRow(
column(3,
rHandsontableOutput("hot_retvol")
),
column(3,
rHandsontableOutput("hot_corr")
)
),
fluidRow(
column(6,
plotOutput("plot")
)
)
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.