The {bidux}
package helps Shiny developers create more
effective dashboards using the Behavioral Insight Design (BID)
Framework. If you’ve ever wondered why users struggle with your
carefully crafted dashboards, or why your beautifully visualized data
doesn’t drive the decisions you expected, this package is for you.
The core insight: Technical excellence ≠ User success. Even the most sophisticated analysis can fail if users can’t quickly understand and act on it.
The BID framework bridges this gap by integrating behavioral science, UX best practices, and data storytelling techniques into a systematic 5-stage process:
You can install the released version of bidux from CRAN with:
install.packages("bidux")
And the development version from GitHub with:
# install.packages("pak")
::pak("jrwinget/bidux") pak
library(bidux)
# Document a complete BID process
<- bid_interpret(
process central_question = "How are our marketing campaigns performing across different channels?",
data_story = list(
hook = "Recent campaign performance varies significantly across channels",
context = "We've invested in 6 different marketing channels over the past quarter",
tension = "ROI metrics show inconsistent results, with some channels underperforming",
resolution = "Identify top-performing channels and key performance drivers"
)|>
) bid_notice(
problem = "Users are overwhelmed by too many filter options and struggle to find relevant insights",
evidence = "User testing shows 65% of first-time users fail to complete their intended task within 2 minutes"
|>
) bid_anticipate(
bias_mitigations = list(
anchoring = "Include previous period performance as reference points",
framing = "Provide toggle between ROI improvement vs. ROI gap views"
)|>
) bid_structure() |>
bid_validate(
summary_panel = "Executive summary highlighting top and bottom performers, key trends, and recommended actions",
next_steps = c(
"Review performance of bottom 2 channels",
"Increase budget for top-performing channel",
"Schedule team meeting to discuss optimization strategy"
)
)
# View implementation suggestions for specific packages
bid_suggest_components(process, package = "bslib")
bid_suggest_components(process, package = "reactable")
# Generate comprehensive reports
bid_report(process, format = "html")
bid_report(process, format = "markdown")
New in 0.3.1: Enhanced telemetry workflow transforms real user behavior data into actionable BID insights.
# Modern approach: analyze telemetry data
<- bid_telemetry("telemetry.sqlite")
issues print(issues) # Shows organized issue summary with severity levels
# Focus on critical issues using tidy workflows
<- issues |>
critical_issues filter(severity == "critical") |>
arrange(desc(user_impact))
# Convert high-priority issues to BID Notice stages
<- bid_notices(
notices issues = critical_issues,
previous_stage = interpret_result
)
# Use telemetry flags to inform structure decisions
<- bid_flags(issues)
flags <- bid_structure(
structure_result previous_stage = anticipate_result,
telemetry_flags = flags # Influences layout selection
)
The bid_telemetry()
function automatically identifies
five key friction indicators:
Legacy bid_ingest_telemetry()
function maintains full
backward compatibility while providing enhanced functionality through
hybrid objects.
{bslib}
, {reactable}
,
{echarts4r}
, and moreThe BID framework is based on established behavioral science and UX design principles. Explore the concept dictionary:
# Browse all available concepts
bid_concepts() |>
select(concept, category, description)
# Get detailed information about specific concepts
bid_concept("Processing Fluency")
bid_concept("Hick's Law")
# Search for concepts by keyword
bid_concepts("cognitive") |>
select(concept, implementation_tips)
help(package = "bidux")
vignette("behavioral-science-primer")
: Behavioral
science for data scientistsvignette("introduction-to-bid")
: Framework overview and
core principlesvignette("telemetry-integration")
: Data-driven UX
workflowsvignette("practical-examples")
: Practical dashboard
examplesvignette("getting-started")
: Complete walk-through with
examplesvignette("concepts-reference")
: Behavioral science
concepts with practical implementationvignette("advanced-workflows")
: Advanced BID
workflowsPlease note that the bidux project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.