View source: R/telemetry_notices.R
| bid_notice_issue | R Documentation |
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.
bid_notice_issue(issue, previous_stage = NULL, override = list())
issue |
A single row from bid_telemetry() output or issues tibble |
previous_stage |
Optional previous BID stage (typically from bid_interpret) |
override |
List of values to override from the issue (problem, evidence, theory) |
A bid_stage object in the Notice stage
## Not run:
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")
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.