Nothing
Study Title: PatientLevelPrediction Report
Prepared on: r Sys.Date()
abb <- data.frame(rbind( c("AUROC", "Area Under the Receiver Operating Characteristic Curve"), c("CDM","Common Data Model"), c("O","Outcome Cohort"), c("OHDSI","Observational Health Data Sciences & Informatics"), c("OMOP","Observational Medical Outcomes Partnership"), c("T", "Target Cohort"), c("TAR", "Time at Risk") )) names(abb) <- c("Abbreviation","Phrase") abb <- abb[order(abb$Abbreviation),] knitr::kable(x = abb, caption = 'List of Abbreviations')
In this study the model development follows the framework presented in r params$plpCitation
for (i in 1:length(params$modelDesignIds)) { modelDesignId <- params$modelDesignIds[i] modelDesign <- knitr::knit_child("model-design.Rmd", quiet = TRUE, envir = environment()) cat(modelDesign, sep = '\n') if(params$include_diagnostic){ diagnostic <- knitr::knit_child("plp-diagnostic.Rmd", quiet = TRUE, envir = environment()) cat(diagnostic , sep = '\n') } if(params$include_results){ results <- knitr::knit_child("plp-results.Rmd", quiet = TRUE, envir = environment()) cat(results , sep = '\n') } }
This study will be designed using OHDSI tools and run with R
r params$rCitation
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.