partial_pressure_ui<-function(){
require(shiny)
shinyUI(fluidPage(
titlePanel("Partial Pressure O2"),
sidebarLayout(
sidebarPanel(width=2,
numericInput('TMP','Target Temp(C)',value=37,min=0,max=40),
numericInput('ATM','atm(mmHg)',value=760)
),
mainPanel(
plotOutput("distPlot")
)
)
))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.