#' main server of app
#'
#' @param input shiny input
#' @param output shiny output
#' @param session shiny session
#'
#' @return shiny server
#' @export
app_server <- function(input, output, session) {
output$plot1 <- shiny::renderPlot({
testfunc(N = input$n_)
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.