server <- function(input, output) {
output$selected_var <- renderText({
Students <- vector()
Students <- input$text
if(input$text != ""){
unlist(weightedaverage(Students)$degrees)
}
else{
print("")
}
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.