### Keep this line to manually test this shiny application. Do not edit this line; shinycoreci::::is_manual_app
library(ggplot2)
ui <- basicPage(
plotOutput("plot1", brush = "plot_brush"),
verbatimTextOutput("info")
)
server <- function(input, output) {
options(width = 100) # Increase text width for printing table
output$plot1 <- renderPlot({
ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point()
})
output$info <- renderPrint({
brushedPoints(mtcars, input$plot_brush, allRows = TRUE)
})
}
shinyApp(ui, server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.