#helper files
checkPlpObject <- function(x){
if(sum(names(x)%in%c("performanceEvaluation","inputSetting","executionSummary",
"model","analysisRef","covariateSummary" )) == 6){
return(T)
}
return(F)
}
checkPrediction <- function(x){
if(sum(names(x)%in%c("prediction" )) == 1){
return(T)
}
return(F)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.