Nothing
## Render surrogates to ui
output[["surrogates_table"]]<- rendertable(surrogates())
## Render calibrated surrogates to ui
output[["calibrated_surro_table"]] <- DT::renderDataTable({
cal<-calib_data_frame(calibrations(), metabo_measures(), bin_pheno_available())
tryCatch({
DT::datatable(data.frame(cal), options = list(pageLength = 5, scrollX = TRUE))
}, error = function(err) {
return(DT::datatable(data.frame(c(
"No data available"
)), rownames = FALSE, colnames = ""))
})
})
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.