View source: R/PredictionQueries.R
getPredictionDiagnosticTable | R Documentation |
This function extracts the specified diagnostic table
getPredictionDiagnosticTable(
connectionHandler,
schema,
plpTablePrefix = "plp_",
table = "diagnostic_participants",
diagnosticId = NULL
)
connectionHandler |
A connection handler that connects to the database and extracts sql queries. Create a connection handler via 'ResultModelManager::ConnectionHandler$new()'. |
schema |
The result database schema (e.g., 'main' for sqlite) |
plpTablePrefix |
The prefix used for the patient level prediction results tables |
table |
The table to extract |
diagnosticId |
(optional) restrict to the input diagnosticId |
Specify the connectionHandler, the resultDatabaseSettings, the table of interest and (optionally) a diagnosticId to filter to
Returns a data.frame with the specified table
Other Prediction:
getPredictionCohorts()
,
getPredictionDiagnostics()
,
getPredictionHyperParamSearch()
,
getPredictionIntercept()
,
getPredictionModelDesigns()
,
getPredictionPerformanceTable()
,
getPredictionPerformances()
,
getPredictionTopPredictors()
conDet <- getExampleConnectionDetails()
connectionHandler <- ResultModelManager::ConnectionHandler$new(conDet)
diagPred <- getPredictionDiagnosticTable(
connectionHandler = connectionHandler,
schema = 'main',
table = 'diagnostic_predictors'
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.