A widget that generates a table of flags over time using
Report_FlagOverTime()
.
Usage
Widget_FlagOverTime(
dfResults,
dfMetrics,
strGroupLevel = c("Site", "Study", "Country"),
strFootnote = NULL,
bExcludeEver = FALSE,
bDebug = FALSE
)
Arguments
- dfResults
data.frame
A stacked summary of analysis pipeline output. Created by passing a list of results returned bySummarize()
toBindResults()
. Expected columns:GroupID
,GroupLevel
,Numerator
,Denominator
,Metric
,Score
,Flag
,MetricID
,StudyID
,SnapshotDate
.- dfMetrics
data.frame
Metric-specific metadata for use in charts and reporting. Created by passing anlWorkflow
object toMakeMetric()
. Expected columns:File
,MetricID
,Group
,Abbreviation
,Metric
,Numerator
,Denominator
,Model
,Score
, andThreshold
. For more details see the Data Model vignette:vignette("DataModel", package = "gsm")
.- strGroupLevel
character
Value for the group level. Default: "Site".- strFootnote
character
Text to insert for figure- bExcludeEver
logical
Exclude options in widget dropdown that include the string "ever". Default:FALSE
.- bDebug
logical
Print debug messages? Default:FALSE
.