Nothing
#' Format the result of summariseAchillesCodeUse into a table
#'
#' @param result A `<summarised_result>` with results of the type
#' "achilles_code_use".
#' @inheritParams typeTableDoc
#' @inheritParams headerDoc
#' @inheritParams groupColumnDoc
#' @inheritParams hideDoc
#' @inheritParams .optionsDoc
#'
#' @return A table with a formatted version of the summariseCohortCodeUse
#' result.
#'
#' @export
#'
#' @examples
#' \donttest{
#' cdm <- mockVocabRef("database")
#' oa <- getCandidateCodes(cdm = cdm, keywords = "osteoarthritis")
#' result_achilles <- summariseAchillesCodeUse(list(oa = oa$concept_id), cdm = cdm)
#' tableAchillesCodeUse(result_achilles)
#' CDMConnector::cdmDisconnect(cdm)
#'}
#'
tableAchillesCodeUse <- function(result,
type = "gt",
header = c("cdm_name", "estimate_name"),
groupColumn = character(),
hide = character(),
.options = list()) {
rlang::check_installed("visOmopResults", version = "1.0.0")
# checks
if(nrow(result) == 0){
cli::cli_warn("`result` object is empty")
return(emptyResultTable(type = type))
}
result <- result |>
visOmopResults::filterSettings(.data$result_type == "achilles_code_use")
if(nrow(result) == 0){
cli::cli_warn("No achilles code use results found in result object")
return(emptyResultTable(type = type))
}
x <- internalTableAchillesResult(
result = result,
resultType = "achilles_code_use",
type = type,
header = header,
groupColumn = groupColumn,
hide = hide,
.options = .options
)
return(x)
}
#' Format the result of summariseOrphanCodes into a table
#'
#' @param result A `<summarised_result>` with results of the type
#' "orphan_codes".
#' @inheritParams typeTableDoc
#' @inheritParams headerDoc
#' @inheritParams groupColumnDoc
#' @inheritParams hideDoc
#' @inheritParams .optionsDoc
#'
#' @return A table with a formatted version of the summariseOrphanCodes
#' result.
#'
#' @export
#'
#' @examples
#' \donttest{
#' cdm <- mockVocabRef("database")
#' codes <- getCandidateCodes(cdm = cdm,
#' keywords = "Musculoskeletal disorder",
#' domains = "Condition",
#' includeDescendants = FALSE)
#'
#' orphan_codes <- summariseOrphanCodes(x = list("msk" = codes$concept_id),
#' cdm = cdm)
#'
#' tableOrphanCodes(orphan_codes)
#'
#' CDMConnector::cdmDisconnect(cdm)
#'}
#'
tableOrphanCodes <- function(result,
type = "gt",
header = c("cdm_name", "estimate_name"),
groupColumn = character(),
hide = character(),
.options = list()) {
rlang::check_installed("visOmopResults", version = "1.0.0")
if(nrow(result) == 0){
cli::cli_warn("`result` object is empty")
return(emptyResultTable(type = type))
}
result <- result |>
visOmopResults::filterSettings(.data$result_type == "orphan_code_use")
if(nrow(result) == 0){
cli::cli_warn("No orphan code results found in result object")
return(emptyResultTable(type = type))
}
x <- internalTableAchillesResult(
result = result,
resultType = "orphan_code_use",
type = type,
header = header,
groupColumn = groupColumn,
hide = hide,
.options = .options
)
return(x)
}
internalTableAchillesResult <- function(result,
type,
resultType,
header,
groupColumn,
hide,
.options) {
omopgenerics::assertCharacter(header, null = TRUE)
omopgenerics::assertCharacter(hide, null = TRUE)
if (!is.list(groupColumn) & !is.null(groupColumn)) groupColumn <- list(groupColumn)
omopgenerics::assertCharacter(groupColumn[[1]], null = TRUE)
# filter result + nice estimate name
x <- result |>
visOmopResults::filterSettings(.data$result_type == .env$resultType) |>
dplyr::mutate(estimate_name = stringr::str_to_sentence(gsub("_", " ", .data$estimate_name)))
header <- reformulateTableAchilles(header)
groupColumn[[1]] <- reformulateTableAchilles(groupColumn[[1]])
hide <- reformulateTableAchilles(hide)
# visOmopTable
x <- visOmopResults::visOmopTable(
result = x,
estimateName = character(),
header = header,
groupColumn = groupColumn,
type = type,
rename = c(
"Domain ID" = "domain_id", "Vocabulary ID" = "vocabulary_id",
"Database name" = "cdm_name", "Standard concept ID" = "variable_level",
"Standard concept name" = "variable_name"
),
hide = hide,
.options = .options
) |>
suppressWarnings() # to remove after next release of visOmopResults
return(x)
}
emptyResultTable <- function(type){
dplyr::tibble()
}
reformulateTableAchilles <- function(vect) {
vect <- as.character(vect)
vect[vect == "standard_concept_id"] <- "variable_level"
vect[vect == "standard_concept_name"] <- "variable_name"
vect
}
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.