Skip to content

Commit

Permalink
Fixing issue #314 - adding T, C, and O IDs to the table to allow bett…
Browse files Browse the repository at this point in the history
…er filtering to users
  • Loading branch information
nhall6 committed Aug 9, 2024
1 parent 4483c72 commit 68fd659
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions R/estimation-cohort-method-results.R
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,12 @@ estimationGetCmResultSummaryTableColDef <- function(){
)
),

targetId = reactable::colDef(show = F),
targetId = reactable::colDef(header = withTooltip(
"Target ID",
"The ID of the target cohort of interest"
)
),

target = reactable::colDef(
header = withTooltip(
"Target",
Expand All @@ -154,7 +159,12 @@ estimationGetCmResultSummaryTableColDef <- function(){
minWidth = 300
),

comparatorId = reactable::colDef(show = F),
comparatorId = reactable::colDef(header = withTooltip(
"Comparator ID",
"The ID of the comparator cohort of interest"
)
),

comparator = reactable::colDef(
header = withTooltip(
"Comparator",
Expand All @@ -163,7 +173,12 @@ estimationGetCmResultSummaryTableColDef <- function(){
minWidth = 300
),

outcomeId = reactable::colDef(show = F),
outcomeId = reactable::colDef(header = withTooltip(
"Outcome ID",
"The ID of the outcome of interest"
)
),

outcome = reactable::colDef(
header = withTooltip(
"Outcome",
Expand Down

0 comments on commit 68fd659

Please sign in to comment.