bid_notice | R Documentation |
This function documents the initial observation and problem identification stage. It represents stage 1 in the BID framework and now returns a structured bid_stage object with enhanced metadata and external mapping support.
bid_notice(problem, theory = NULL, evidence = NULL, ...)
problem |
A character string describing the observed user problem. |
theory |
A character string describing the behavioral theory that might explain the problem. If NULL, will be auto-suggested using external theory mappings. |
evidence |
A character string describing evidence supporting the problem. |
... |
Additional parameters. Deprecated parameters like 'target_audience' will generate warnings if provided. |
A bid_stage object containing the documented information for the "Notice" stage with enhanced metadata and validation.
# Basic usage with auto-suggested theory
notice_result <- bid_notice(
problem = "Users struggling with complex dropdowns and too many options",
evidence = "User testing shows 65% abandonment rate on filter selection"
)
# Print shows human-friendly summary
print(notice_result)
# Access underlying data
summary(notice_result)
# Check stage and metadata
get_stage(notice_result)
get_metadata(notice_result)
# with explicit theory
notice_explicit <- bid_notice(
problem = "Mobile interface is difficult to navigate",
theory = "Fitts's Law",
evidence = "Mobile users report frustration with small touch targets"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.