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.frameA 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.frameMetric-specific metadata for use in charts and reporting. Created by passing anlWorkflowobject 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
characterValue for the group level. Default: "Site".- strFootnote
characterText to insert for figure- bExcludeEver
logicalExclude options in widget dropdown that include the string "ever". Default:FALSE.- bDebug
logicalPrint debug messages? Default:FALSE.