View source: R/telemetry_notices.R
| bid_pipeline | R Documentation |
Convenience function that creates a pipeline of Notice stages from the highest priority telemetry issues. Useful for systematic issue resolution workflows.
bid_pipeline(issues, previous_stage, max = 3, ...)
issues |
A tibble from bid_telemetry() output |
previous_stage |
Previous BID stage (typically from bid_interpret) |
max |
Maximum number of issues to include in pipeline (default: 3) |
... |
Additional arguments passed to bid_notices() |
A named list of bid_stage objects in the Notice stage
## Not run:
issues <- bid_telemetry("data.sqlite")
interpret <- bid_interpret("How can we systematically improve UX?")
# Create pipeline for top 3 issues
notice_pipeline <- bid_pipeline(issues, interpret, max = 3)
# Continue with first issue in pipeline
anticipate <- bid_anticipate(previous_stage = notice_pipeline[[1]])
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.