
Create Notice stage from individual telemetry issue
bid_notice_issue.Rd
Bridge function that converts a single telemetry issue row into a BID Notice stage. This allows seamless integration between telemetry analysis and the BID framework.
Usage
bid_notice_issue(issue, previous_stage = NULL, override = list())
Examples
if (FALSE) { # \dontrun{
issues <- bid_telemetry("data.sqlite")
interpret <- bid_interpret("How can we reduce user friction?")
# Convert first issue to Notice stage
notice <- bid_notice_issue(issues[1, ], previous_stage = interpret)
# Override problem description
notice <- bid_notice_issue(
issues[1, ],
previous_stage = interpret,
override = list(problem = "Custom problem description")
)
} # }