Nothing
library(DT) DT::datatable(results$plot_data())
library(plotly) if (is.null(input$plot_submit)) return(NULL) if (input$plot_submit == 0) return(NULL) marginList <- list( l = input$plot_marginL, r = input$plot_marginR, t = input$plot_marginT, b = input$plot_marginB) if (results$plot_is3D()) { results$plot_view() %>% layout(scene = list(xaxis = list(title = input$plot_xLabel), yaxis = list(title = input$plot_yLabel), zaxis = list(title = input$plot_zLabel)), title = input$plot_title, showlegend = input$plot_legend, margin = marginList) } else { results$plot_view() %>% layout(xaxis = list(title = input$plot_xLabel), yaxis = list(title = input$plot_yLabel), title = input$plot_title, showlegend = input$plot_legend, margin = marginList) }
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.