Learn R Programming

bidux (version 0.3.3)

bid_address: Create Notice stage from single telemetry issue (sugar)

Description

Convenience function that combines issue selection and Notice creation in one step. Useful for quick workflows where you want to address a specific issue immediately.

Usage

bid_address(issue, previous_stage, ...)

Value

A bid_stage object in the Notice stage

Arguments

issue

A single row from bid_telemetry() output

previous_stage

Previous BID stage (typically from bid_interpret)

...

Additional arguments passed to bid_notice_issue()

Examples

Run this code
if (FALSE) {
issues <- bid_telemetry("data.sqlite")
interpret <- bid_interpret("How can we improve user experience?")

# Address the highest impact issue
top_issue <- issues[which.max(issues$impact_rate), ]
notice <- bid_address(top_issue, interpret)
}

Run the code above in your browser using DataLab