
Print detection summary report in readable format
Source:R/1.6_function_walks_detections.R
print_detection_summary.Rd
Displays a formatted report of detection performance statistics including overall rates, summary statistics, individual path performance, and receiver-specific performance.
Arguments
- detection_stats
List output from
calculate_detection_summaries
containing detection performance metrics.
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)
}