Skip to contents

Displays a formatted report of detection performance statistics including overall rates, summary statistics, individual path performance, and receiver-specific performance.

Usage

print_detection_summary(detection_stats)

Arguments

detection_stats

List output from calculate_detection_summaries containing detection performance metrics.

Value

Invisibly returns NULL. Called for side effect of printing summary report.

Details

The printed report includes:

  • Overall detection performance across all paths

  • Summary statistics (mean, median, range, standard deviation)

  • Individual path performance breakdown

  • Individual receiver performance breakdown

Examples

if (FALSE) {
# Calculate and print detection summaries
detection_stats <- calculate_detection_summaries(fish_simulation)
print_detection_summary(detection_stats)
}