function(input, output, session) {
output$mychart <- renderLineChart({
# Return a data frame. Each column will be a series in the line chart.
data.frame(
Sine = sin(1:100/10 + input$sinePhase * pi/180) * input$sineAmplitude,
Cosine = 0.5 * cos(1:100/10),
"Sine 2" = sin(1:100/10) * 0.25 + 0.5
)
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.